2、当鼠标放到文件或者文件夹上时,就会出现文件名及容量大小。
3、右键点击文件名,打开属性,就可以直接显示。
以JAVA为例:
try{System.out.println("正在链接URL")
url=new URL("网络文件地址")
HttpURLConnection urlcon=(HttpURLConnection)url.openConnection()
//根据响应获取文件大小
fileLength=urlcon.getContentLength()
if(urlcon.getResponseCode()>=400){
System.out.println("服务器响应错误")
System.exit(-1)
}
if(fileLength<=0)
System.out.println("无法获知文件大小")
//打印信息
printMIME(urlcon)
System.out.println("文件大小为:"+fileLength+".")
//获取文件名
String trueurl=urlcon.getURL().toString()
String filename=trueurl.substring(trueurl.lastIndexOf('/')+1)
fileOut=new File("D://",filename)
}
catch(MalformedURLException e){
System.err.println(e)
}
catch(IOException e){
System.err.println(e)
}
1、文件大小超过10m导致无法上传至云端(免费用户上传至文档的文件大小最大10m);2、网络异常,到时文件无法成功保存(可先按键盘F12另存为至本地后排查电脑网络后再次尝试另存为保存至云文档);
3、云文档空间已满,导致文件无法上传至云端。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)