반응형 nodejs2 [NodeJS, Android] JSON 데이터 서버로 넘기기 JSON 데이터 서버로 넘기기 아래와 같은 데이터를 보내서 서버 쪽에서 log를 찍도록 합니다. {"name" : "hong""phone" : "000-0000"} 먼저 안드로이드에서의 POST방식으로 보내는 코드입니다.public String sendHttpWithMsg(String url){//기본적인 설정DefaultHttpClient client = new DefaultHttpClient();HttpPost post = new HttpPost(url);HttpParams params = client.getParams();HttpConnectionParams.setConnectionTimeout(params, 3000);HttpConnectionParams.setSoTimeout(params, 30.. 2014. 12. 20. [NodeJS] nodejs에서 utf-8로 응답하기 nodejs에서 utf-8로 응답하기 response의 writeHead부분에 charset을 추가해주면 됩니다. example app.get('/', function(req, res){ //req.session.message = 'Hello World'; res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'}); res.write("welcome입니다"); res.end();}); 2014. 12. 20. 이전 1 다음 반응형