0
如何使用volley將stringrequest發送到特定的IP地址和端口而不是url?如何使用volley發送POST請求到IP地址(android)
我的代碼目前看起來是這樣的:
public void onURLPassed(final String urlOfWebsite) {
Log.d(TAG, "Url passed: " + urlOfWebsite);
String tag_json_obj = "json_obj_req";
String serverURL = "http://test.me/api/request/page";
StringRequest jsonObjReq = new StringRequest(Request.Method.POST,
serverURL,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
Log.d(TAG, response);
String parsedResponse = parse(response);
if (parsedResponse.equals("Error: This is not a valid website")) {
if (isViewAttached()) {
getView().displayMessage("This is not a valid website");
} else {
// error handling
}
return;
}
parsedResponse = parsedResponse.replace("\\" + "n", " \n");
parsedResponse = parsedResponse.replace("\\" + "\"", "\"");
getView().displayWebsite(parsedResponse.substring(1, parsedResponse.length()-1));
}
}, new Response.ErrorListener() {
我想現在要做的就是發送相同的POST請求,例如12.123.12.123:40代替的serverURL http://test.me/api/request/page
我會怎樣去做這個?
[如何使用插座(IP地址)和端口號(如1234)使用排雷庫進行網絡調用的可能副本?](http://stackoverflow.com/questions/39344438/how-to-use- volley-library-for-network-call-using-socketip-address-and-port-num) –
找到了一些東西,可能對其他人有用:[真正簡單的tcp客戶端](http://stackoverflow.com/問題/ 38162775 /真的,簡單的TCP客戶端) – Numb3rs