powered by simpleCommunicator - 2.0.30     © 2024 Programmizd 02
Map
Форумы / Java [игнор отключен] [закрыт для гостей] / ошибка при отправка json
1 сообщений из 1, страница 1 из 1
ошибка при отправка json
    #40011940
neteurt
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Подскажите, в чем может быть проблема?
Код: java
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
    
package by.nces.mtisz.lfr.member.portlet.bean;

import java.io.IOException;
import java.io.StringWriter;

import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import javax.portlet.ActionResponse;
import javax.portlet.PortletRequest;

import javax.ws.rs.core.Response;

import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;

import org.json.simple.JSONObject;

import oracle.adfinternal.view.faces.config.rich.XmlHttpServletResponse;

import org.json.JSONException;
....
public Response test1() throws Exception {
        String urlParameters = "{\"first_name\":\"Дамшевич\",\"second_name\":\"Александр\",\"personal_number\":\"3080564B022PB3\"}";
        HttpURLConnection connection = null;
        URL url = new URL("http://dev.kassy.by/bdip/v1/user");
        connection = (HttpURLConnection) url.openConnection();
        connection.setRequestMethod("POST");
        connection.setRequestProperty("Content-Type", "application/json");
        connection.setRequestProperty("apiKey", "f4ed59eae75099bf3d7f18add40c0bc104503c9568d716a51e52bfac716d70ef");
        connection.setUseCaches (false);
        connection.setDoInput(true);
        connection.setDoOutput(true);
        
        //Send request
        OutputStreamWriter wr = new OutputStreamWriter(connection.getOutputStream(), "UTF-8");
        wr.write(urlParameters);
        wr.flush();            
                   
        //Get Response
        InputStream is = connection.getInputStream();
        return Response.ok(is).build();
    }
...
Рейтинг: 0 / 0
1 сообщений из 1, страница 1 из 1
Форумы / Java [игнор отключен] [закрыт для гостей] / ошибка при отправка json
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]