我有包含1000个数字的文件(data.txt)。我想将此文件从服务器发送到客户端。
客户端
public class Test {
public static void main(String[] args) {
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(getBaseURI());
// Get JSON for application
System.out.println(service.path("rest").accept(MediaType.APPLICATION_XML).get(String.class));
}
private static URI getBaseURI() {
return UriBuilder.fromUri("http://localhost8080/data").build();
}
我不知道如何发送数据.txt ...
我创建了这个函数..
@Path("/data")
public class Date
{
@GET
@Produces(MediaType.TEXT_HTML)
int[] zmien(Scanner in)
{
int i=0;
int temp[] = new int [50];
while ( in.hasNext() )
{
temp[i] = in.nextInt();
i++;
}
in.close();
return temp;
}
并使用函数main()
Date test1 = new Data();
File file = new File ("data.txt");
Scanner in1 = new Scanner(file);
int kaka[] = new int[10];
kaka = test1.zmien(in1);
但它不起作用......我是REST的新手,所以我可能犯错误。 请帮忙
我不知道如何使用JSON发送数据.. 直到现在我创造。
public class Test{
public static void main(String[] args){
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(getBaseURI());
// Get JSON for application
System.out.println(service.path("rest").path("data").accept(MediaType.APPLICATION_JSON).get(String.class));
}
private static URI getBaseURI()
{
return UriBuilder.fromUri("http://localhost:8080").build();
}
和
@Path("/data")
public class Rest {
@POST
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public JSONObject sayData(JSONObject inputJsonObj) throws Exception {
JSONArray numbers = new JSONArray();
numbers.put(2);
numbers.put(2);
numbers.put(3);
JSONObject result = new JSONObject();
result.put("numbers", numbers);
return result;
return outputJsonObj;
}
}
我的目的是使用JSON将数据发送到客户端。数据在文件(data.txt)中,现在我尝试发送简单数组,当我运行程序时我得到 - > “GET http:// localhost:8080 / rest / data返回的响应状态为404 Not Found” 返回404 Not Found的响应状态...我知道如何发送简单的字符串,但是使用.txt我有麻烦..以后我必须接收这些数据并将其作为一个int处理(因为我必须执行一些数学运算关于这个数据)
答案 0 :(得分:1)
首先,您需要决定如何发送数据。
如果要发送数字列表,JSON可能如下所示:{ numbers: [ 1, 2, 3] }
要创建这样的JSON,请使用JSONObject构造函数和类方法,如'put'。
JSONArray numbers = new JSONArray();
numbers.add(1);
numbers.add(2);
numbers.add(3);
JSONObject result = new JSONObject();
result.put("numbers", numbers);
然后你可以返回“结果”。