posted @ 2016-04-26 13:06 朱杰兵 阅读(260) | 评论 (0) | 编辑 收藏
import java.io.InputStream; import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.URL; /** * 通过UrlConnection调用Webservice服务 * */ public class App { public static void main(String[] args) throws Exception { //服务的地址 URL wsUrl = new URL("http://192.168.1.100:6789/hello"); HttpURLConnection conn = (HttpURLConnection) wsUrl.openConnection(); conn.setDoInput(true); conn.setDoOutput(true); conn.setRequestMethod("POST"); conn.setRequestProperty("Content-Type", "text/xml;charset=UTF-8"); OutputStream os = conn.getOutputStream(); //请求体 String soap = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:q0=\"http://ws.itcast.cn/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">" + "<soapenv:Body> <q0:sayHello><arg0>aaa</arg0> </q0:sayHello> </soapenv:Body> </soapenv:Envelope>"; os.write(soap.getBytes()); InputStream is = conn.getInputStream(); byte[] b = new byte[1024]; int len = 0; String s = ""; while((len = is.read(b)) != -1){ String ss = new String(b,0,len,"UTF-8"); s += ss; } System.out.println(s); is.close(); os.close(); conn.disconnect(); } }
posted @ 2016-04-25 17:14 朱杰兵 阅读(115) | 评论 (0) | 编辑 收藏
posted @ 2016-04-14 10:13 朱杰兵 阅读(72) | 评论 (0) | 编辑 收藏
posted @ 2016-04-13 14:50 朱杰兵 阅读(95) | 评论 (0) | 编辑 收藏
posted @ 2016-04-13 13:23 朱杰兵 阅读(102) | 评论 (0) | 编辑 收藏
'yyyy-mm-dd hh24:mi:ss':mi 分钟 'yyyy-mm-dd hh24:mm:ss':mm 月份 其中两个都是月份
posted @ 2016-03-07 11:12 朱杰兵 阅读(96) | 评论 (0) | 编辑 收藏
posted @ 2016-01-14 16:39 朱杰兵 阅读(115) | 评论 (0) | 编辑 收藏
posted @ 2016-01-14 10:53 朱杰兵 阅读(94) | 评论 (0) | 编辑 收藏
posted @ 2015-12-15 15:31 朱杰兵 阅读(110) | 评论 (0) | 编辑 收藏
posted @ 2015-10-22 09:41 朱杰兵 阅读(413) | 评论 (0) | 编辑 收藏
Powered by: BlogJava Copyright © 朱杰兵