=====================================================================================
OutputStream os = res.getOutputStream();
XMLEncoder xmlEnc = new XMLEncoder(os);
xmlEnc.writeObject(vo);
xmlEnc.flush();
xmlEnc.close();
=====================================================================================
URL url = new URL(serverIp+"/eventIfInsert.ws");
httpConn = (HttpURLConnection)url.openConnection();
//POST 방식으로 넘김
httpConn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
httpConn.setRequestMethod("POST");
httpConn.setDoOutput(true);
OutputStream out_stream = httpConn.getOutputStream();
out_stream.write(param.toString().getBytes("UTF-8"));
out_stream.flush();
out_stream.close();
InputStream is = httpConn.getInputStream();
XMLDecoder xmlDec = new XMLDecoder(is);
@SuppressWarnings("unchecked")
Map<String, String> tmpMap = (Map<String, String>)xmlDec.readObject();
'java' 카테고리의 다른 글
cmd 창에서 클래스패스 설정 (0) | 2014.08.25 |
---|---|
Runtime 에 jar 파일 클래스패스에 추가 시키기 : RuntimeJarLoader (0) | 2013.09.03 |
Java 실행 옵션 정리 (0) | 2013.01.31 |
자바 커맨드 실행 후 return 값 출력 코드 (0) | 2013.01.31 |
java.sql.Date <==> java.util.Date (0) | 2013.01.31 |