【发布时间】:2015-11-04 01:22:49
【问题描述】:
我正在使用 Google App Engine 来存储数据。我的应用程序是一个 android 应用程序,我想从 GAE 数据存储端接收数据。但是当我想接收 ArrayList 作为 JSON 文本时,我收到“错误:500内部服务器错误”消息,我找不到任何解决方案,我将客户端和服务器端代码放在这里;
服务器端
@SuppressWarnings("serial")
public class ReceiveLoc extends HttpServlet{
public static final String USER_ID = "userId";
public static final String USER_LATITUDE = "latitude";
public static final String USER_LONGITUDE = "longitude";
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
// TODO Auto-generated method stub
String user_id = req.getParameter(USER_ID);
resp.setContentType("application/json");
PrintWriter out = resp.getWriter();
out.println(receiveLoc(user_id));
out.flush();
}
private String receiveLoc(String user_id) {
// TODO Auto-generated method stub
ArrayList<Location> locations = new ArrayList<ReceiveLoc.Location>();
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Filter filterId = new FilterPredicate(USER_ID, Query.FilterOperator.EQUAL,user_id);
Query q = new Query("UserLoc");
q.setFilter(filterId);
PreparedQuery pq = datastore.prepare(q);
for(Entity result: pq.asIterable()){
double latitude = (double) result.getProperty(USER_LATITUDE);
double longitude = (double) result.getProperty(USER_LONGITUDE);
locations.add(Location.newInstance(latitude, longitude));
}
Type type = new TypeToken<ArrayList<Location>>() {}.getType();
Gson gson = new Gson();
String json = gson.toJson(locations,type);
return json;
}static class Location {
double latitude;
double longitude;
public Location(double latitude,double longitude){
this.latitude = latitude;
this.longitude = longitude;
}
public double getLatitude() {
return latitude;
}
public double getLongitude() {
return longitude;
}
public static Location newInstance(double latitude,double longitude){
return new Location(latitude, longitude);
}
}
}
客户端
class ClientAsyncReceiveLoc extends AsyncTask<String,Void,String> {
//This ASYNCTASK class created different from ClientAsync class because in that class,
//locations(double) values are processed.
Activity activity;
//constructor.
public ClientAsyncReceiveLoc(Activity activity) {
this.activity = activity;
}
@Override
protected String doInBackground(String... user_id) {
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("https://application-id.appspot.com/" + MainActivity.OPERATION_RECEIVE_LOC);
List<NameValuePair> nameValuePairs = new ArrayList<>(1);
nameValuePairs.add(new BasicNameValuePair(User.USER_ID, user_id[0]));
try {
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpClient.execute(httpPost);
Log.i("Connection Response Code",String.valueOf(response.getStatusLine().getStatusCode()));
if (response.getStatusLine().getStatusCode() == 200) {
HttpEntity entity = response.getEntity();
return EntityUtils.toString(entity);
}
return "Error : " + response
.getStatusLine()
.getStatusCode() + " " + response
.getStatusLine().getReasonPhrase();
} catch (MalformedURLException e) {
return e.getMessage();
} catch (UnsupportedEncodingException e) {
return e.getMessage();
} catch (IOException e) {
return e.getMessage();
}
}
@Override
protected void onPostExecute(String jsonResponse) {
//super.onPostExecute(s);
Log.i("RECEIVED",jsonResponse);
}
}
【问题讨论】:
-
你遇到了什么错误?
-
我的 LogCat 屏幕上的响应代码为 500 Internal Server Error,现在,我解决了问题。问题是将 GSON 库添加到我的服务器端项目中,我在添加到 .jar 文件时错过了一部分。感谢@jirungaray 的关注。
-
没问题,请说明您是如何解决问题并关闭问题的:)
-
@jirungaray ,当我将 GSON 外部库添加到我的项目中时,我只是做了步骤 RightClickProject>Build Path>Configure Build Path(Libraries Tab)->Add External JARs 步骤,我忘记了这些说明将它放在你的 google web 项目的 war/WEB-INF/lib 文件夹中。 这就是为什么,当我想从服务器端项目接收数据时,感谢 gson,我收到 500 Internal Server Error 作为响应消息。据此,我建议遇到这些问题的每个人,在将任何外部库添加到您的项目时要小心:)
-
确保将其标记为已回答。
标签: java android json google-app-engine