我正在使用 eclipse 创建一个 android 应用程序,它将读取用户输入的价格。
输入的价格应存储到数据库中(phpmyadmin)
我正在使用下面的代码,但 Eclipse 有错误并要求我将双精度转换为字符串。
food = Double.parseDouble(inputFood.getText().toString());
transport = Double.parseDouble(inputTransport.getText().toString());
tele = Double.parseDouble(inputTele.getText().toString());
academic = Double.parseDouble(inputAcademic.getText().toString());
entertainment = Double.parseDouble(inputEntertainment.getText().toString());
health = Double.parseDouble(inputHealth.getText().toString());
others = Double.parseDouble(inputOthers.getText().toString());
budget = Double.parseDouble(inputBudget.getText().toString());
total = food + transport + tele + academic + entertainment + health + others;
balance = budget - total;
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("food", food));
params.add(new BasicNameValuePair("transport", transport));
params.add(new BasicNameValuePair("tele", tele));
params.add(new BasicNameValuePair("academic", academic));
params.add(new BasicNameValuePair("entertainment", entertainment));
params.add(new BasicNameValuePair("health", health));
params.add(new BasicNameValuePair("others", others));
params.add(new BasicNameValuePair("budget", budget));
params.add(new BasicNameValuePair("total", total));
params.add(new BasicNameValuePair("balance", balance));
JSONObject json = jsonParser.makeHttpRequest(url_save_expenses,
"GET", params);
是否有任何其他编码用于存储双重数据?
谢谢回答..