RMS の特定の位置でレコードを更新したいのですが、setRecord メソッドを使用して最後に新しい行が挿入されているため、RMS の任意のレコードを置き換える方法 このようにパイプ記号を使用して値を保存しています。
AppData.java
public static String lbl_private_key = "PRIVATEKEY|",
lbl_idnumber = "IDNUMBER|",
lbl_login_password = "PASSWORD|";
int position = dataHelper.getProductPosition();
dataHelper.getPosition_Response(new_response,position);
私のデータ ヘルパー クラス
public void getPosition_Response(String newresponse,int position) {
try {
ProductManager pm = new ProductManager(parent);
byte[] data = res.getBytes();
System.out.println("records are been updated");
record.setRecord(position, data, 0, data.length);
AppData.setProducts(pm.getProduct());
} catch (Exception e) {
e.printStackTrace();
displayMessage(e.getMessage(), e.toString());
}
}