我正在将字符串数组从servlet发送到ajax,以显示在网络浏览器上,你能告诉我该怎么做吗
我尝试将字符串数组转换为json,但是在eclipse中gson上显示错误,有没有发送方法
servlet代码
side[u] = side[v] ^ 1
ajax呼叫代码
resp.setHeader("Content-Type", "text/html");
resp.setCharacterEncoding("UTF-8");
String a1[]=new String[20];
a1[0]="hello";
a1[1]="world";
resp.getWriter().println(a1);
我期望输出世界,但是我收到500个内部服务器错误