当前位置: 编程技术>移动开发
本页文章导读:
▪验证错误 验证异常
@Get("getCaseTest") public String getCaseTest(AppInvocation inv) throws Exception { throw new Exception("test exception"); }
......
▪ 消除SDK更新时的“https://dl-ssl.google.com refused”异常 消除SDK更新时的“https://dl-ssl.google.com refused”错误
消除SDK更新时,有可能会出现这样的错误: Download interrupted: hostname in certificate didn't match: <dl-ssl.google.com> != <www.google.com> Download inte.........
▪ 使用fatjar导出有第三方库摘引的jar 使用fatjar导出有第三方库引用的jar
把android项目导出为jar时,老是不能把第三方库一起导出,查看Eclipse如何打包的过程中我发现有个fatjar插件,可以把需要的资源打进一个jar里。所以下载.........
[1]验证错误
来源: 互联网 发布时间: 2014-02-18
验证异常
@Get("getCaseTest")
public String getCaseTest(AppInvocation inv) throws Exception {
throw new Exception("test exception");
}
@Get("getCaseTest")
public String getCaseTest(AppInvocation inv) throws Exception {
throw new Exception("test exception");
}
[2] 消除SDK更新时的“https://dl-ssl.google.com refused”异常
来源: 互联网 发布时间: 2014-02-18
消除SDK更新时的“https://dl-ssl.google.com refused”错误
消除SDK更新时,有可能会出现这样的错误:
Download interrupted: hostname in certificate didn't match: <dl-ssl.google.com> != <www.google.com>
Download interrupted: Connection to https://dl-ssl.google.com refused
Done. Nothing was installed.
解决办法是:将https://修改为http://
修改方法是:如下图,在Android SDK Manager->Tools-Options...选项界面,
将“Force https://… sources to be fetched using http://…”勾选!
如果还有错,可以在文件(C:\Windows\System32\drivers\etc\hosts)中,添加如下几行:
203.208.46.146 www.google.com
203.208.46.146 dl.google.com
203.208.46.146 dl-ssl.google.com
[3] 使用fatjar导出有第三方库摘引的jar
来源: 互联网 发布时间: 2014-02-18
使用fatjar导出有第三方库引用的jar
把android项目导出为jar时,老是不能把第三方库一起导出,查看Eclipse如何打包的过程中我发现有个fatjar插件,可以把需要的资源打进一个jar里。所以下载了一个,下载地址:http://sourceforge.net/project/showfiles.php?group_id=115990&package_id=125924 解压缩后是一个.../plugins/(net...)把plugins下面的(net..)文件夹拷贝到eclipse的plugins下,然后重启eclipse,就可以看到项目=〉Export..=>向导里有fat jar
把android项目导出为jar时,老是不能把第三方库一起导出,查看Eclipse如何打包的过程中我发现有个fatjar插件,可以把需要的资源打进一个jar里。所以下载了一个,下载地址:http://sourceforge.net/project/showfiles.php?group_id=115990&package_id=125924 解压缩后是一个.../plugins/(net...)把plugins下面的(net..)文件夹拷贝到eclipse的plugins下,然后重启eclipse,就可以看到项目=〉Export..=>向导里有fat jar
最新技术文章: