我正在开发Android应用程序,并在三星J7中运行。问题是在运行应用程序时,它显示错误“(httplog)-静态:issbsettingenabled false”是否有任何方法可以启用httplog true或解决此问题的替代方法。如果希望通过编程方式启用此功能,如何进行
private void tryLogin(String log, String pass) {
HttpURLConnection connection;
OutputStreamWriter request = null;
URL url = null;
String response = null;
String parameters = "="+log+"&="+pass;
try
{
url = new URL("http://209.68.26.95/anglertechnologieseit/lc_webservice/webservice.php?Case=loginCheck");
connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
connection.setRequestMethod("POST");
request = new OutputStreamWriter(connection.getOutputStream());
request.write(parameters);
request.flush();
request.close();
String line = "";
InputStreamReader isr = new InputStreamReader(connection.getInputStream());
BufferedReader reader = new BufferedReader(isr);
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null)
{
sb.append(line + "\n");
}
stored in response variable.
response = sb.toString();
Toast.makeText(this,"Message from Server: \n"+ response, 0).show();
System.out.println("Message from Serverrrrrrrrrrrr :"+response);
isr.close();
reader.close();
}
catch(IOException e)
{
System.out.println("eeerrrrooorrr"+e);
}
}
1条答案
按热度按时间smdnsysy1#
我认为这更多的是一个警告,而不是一个错误。如果你得到这些消息的垃圾邮件,你可以停用这种特定类型的错误(还有其他问题Stackoverflow)。
我首先认为这是一个错误,因为我没有收到任何数据在我的服务器上。
我的错误是,代码可能不工作.(忘了问响应代码)这个代码工作可能:
提示:使用调试器模式进行调试会更容易,因为您将看到更多错误