/**
* 數(shù)據(jù)傳給wap站點(diǎn)
*
* @param message
* @throws IOException
*/
private void settoWap(String message) throws IOException {
URL url;
try {
url = new URL(
"http://www.devdao.com/colgate/inc/msgvote.php?imgid="
+ message+"&mobile="+phone);
HttpURLConnection connection = (HttpURLConnection) url
.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);
PrintWriter out = new PrintWriter(connection.getOutputStream());
out.close();
BufferedReader in = new BufferedReader(new InputStreamReader(
connection.getInputStream()));
String line;
while ((line = in.readLine()) != null) {
LogTool.WriteLog(line);
System.out.println(line);
}
in.close();
成都創(chuàng)新互聯(lián)公司是一家專(zhuān)注于成都做網(wǎng)站、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),洛龍網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專(zhuān)注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專(zhuān)業(yè)建站公司;建站業(yè)務(wù)涵蓋:洛龍等地區(qū)。洛龍做網(wǎng)站價(jià)格咨詢:18980820575
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
-