将文件从我的模拟器sdcard上传到本地wampserver时出现此错误。
03-22 10:46:15.459:ERROR / Debug(487):错误:localhost / 127.0.0.1:80 - 拒绝连接
示例代码
String urlString = "http://localhost/uploads/index.php";
try
{
//------------------ CLIENT REQUEST
FileInputStream fileInputStream = new FileInputStream(new File(existingFileName));
// open a URL connection to the Servlet
URL url = new URL(urlString);
有人可以告诉我这个错误意味着什么以及我必须做些什么才能避免它?
答案 0 :(得分:2)
您的问题可能是由于您指向的localhost名称驻留在设备上并且不服务器所在的主机。
您可以采取的方法是使用主机PC的实际IP地址。
答案 1 :(得分:1)
您必须将“localhost”替换为“10.0.2.2”。