我面臨的問題,從cloudant數據庫中的數據:檢索用java自由(Java Servlet的程序)
問題:需要去用java自由(Java Servlet的程序)插入到表中cloudant數據庫中的最後一個值。但我WRITEA程序,檢索特定ID的數據。(下面的代碼)我需要插入cloudant數據庫中的最後一個值在Android應用程序
@Resource(name = "couchdb/myCloudant")
protected CouchDbInstance mydb ;
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String dbname1 = "Tempdb";
String dbname2 = "pulsedb";
try {
CouchDbConnector dbconnector1 = mydb.createConnector(dbname1, true);
InputStream s1 = dbconnector1.getAsStream("2");
// here passing the id 2 in cloudant this will return the document of id 2
BufferedReader reader1 = new BufferedReader(new InputStreamReader(s1));
StringBuilder out1 = new StringBuilder();
String line1;
while ((line1 = reader1.readLine()) != null) {
out1.append(line1);
}
// response.getWriter().print();
String ss1 = out1.toString();
}
}
This the screenshot of table in cloudant database
你是什麼意思,「得到一個程序」? – nitind
您是否試圖獲取最後一個文檔ID,以便您可以增加文檔ID,並將增加的值作爲下一個文檔ID?如果是這樣,那麼雲計算將無法使用。如果你想以原子方式遞增字段,你需要使用其他技術,比如redis。 –
不,我需要將最後一個值插入數據庫到Android應用程序 – nithin