Android 教材 获取服务器文件的长度
2010-04-09 05:49:00 来源:WEB开发网核心提示:原先使用Filelen(“文件名称”)来获得文件的长度结果服务器报错,说是需要更改安全权限,Android 教材 获取服务器文件的长度,具体的错误内容如下:Description: The application attempted to perform an operation not allowed by the
原先使用Filelen(“文件名称”)来获得文件的长度结果服务器报错,说是需要更改安全权限。具体的错误内容如下:
Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
Exception Details: System.Security.SecurityException: System.Security.Permissions.SecurityPermission。
在尝试了一些方法后无果,最后把获取服务器文件长度的函数改成了:
Dim fileinfo = My.Computer.FileSystem.GetFileInfo(mypath & songname) '这里获得文件的长度
Dim filelength = fileinfo.Length
然后运行正常。其实在.net的环境里,系统已经提示使用my.computer.filesystem.getfileinfo来替代filelen了,不过并没有提及安全权限问题。
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接