我正在使用网址
Path out = Paths.get("C:\\Users\\student\\Documents\\myfile.docx");
InputStream in = getClass().getResourceAsStream("1.docx");
Files.copy(in, out, StandardCopyOption.REPLACE_EXISTING);
获取包含我的应用程序信息的JSON文件。如果应用程序已在App Store上发布但我仍在开发它,并且来自该URL的结果包含此内容,则此方法有效:
http://itunes.apple.com/lookup?bundleId=com.myCompany.myApp
我尝试过使用
{
"resultCount":0,
"results": []
}
和
http://sandbox.itunes.apple.com/lookup?bundleId=com.myCompany.myApp
我收到了
Http / 1.1服务不可用
有什么想法吗?
答案 0 :(得分:1)
不可能这样做。我建议您使用其他方式获取所需数据,或者在应用程序无法使用时模拟您期望的响应,并在数据可用时立即将请求转发给Apple。