平板电脑是motorola xoom ICS(4.0.3)并在macbook pro上开发.关于我可以用来查看数据的任何建议?
adb程序在@L_403_0@-sdk-mac_x86 / platform-tools中,我执行以下命令:
./adb shell
>但我没有在哪里 – 只有许可问题.我看到有人建议firefox附加组件但是……真的吗?是最好的吗?在我看来,开发人员可以更好地查看数据库中的数据.如果您要将数据库插入数据库,您希望能够查看内容,以防您以后需要调试选择(作为一个非常好的示例).
编辑:我不能让firefox插件工作.似乎没有识别任何外部设备.
有任何想法吗?谢谢.
解决方法 我有一个类似的问题 – 并决定在我的应用程序中放一个按钮,点击后,将数据库复制到SD卡.然后,您可以使用DDMS将数据库从SD卡复制到连接的计算机,并启动您要检查数据库,验证值等的任何内容.package com.me.myPackage;import java.io.file;import java.io.fileinputStream;import java.io.fileOutputStream;import java.io.IOException;import java.io.OutputStream;import java.text.SimpleDateFormat;import java.util.Date;import androID.content.Context;import androID.os.Environment;import androID.Widget.Toast;public class Utility {public static voID backupDatabase(Context context) throws IOException { // Open your local db as the input stream String infilename = PATH_TO_YOUR_DB; file dbfile = new file(infilename); fileinputStream fis = new fileinputStream(dbfile); file outputDirectory = new file( Environment.getExternalStorageDirectory() + "/PATH_FOR_BACKUP"); outputDirectory.mkdirs(); SimpleDateFormat sdf = new SimpleDateFormat(Constants.DATE_TIME_FORMAT_FOR_DATABASE_name); // append date time to db name String backupfilename = "/MyApp_" + sdf.format(new Date()) + ".db3"; String outfilename = outputDirectory + backupfilename; // Open the empty db as the output stream OutputStream output = new fileOutputStream(outfilename); // transfer bytes from the inputfile to the outputfile byte[] buffer = new byte[1024]; int length; while ((length = fis.read(buffer)) > 0) { output.write(buffer,length); } // Close the streams output.flush(); output.close(); fis.close(); Toast.makeText(context,"Database backup complete",Toast.LENGTH_LONG) .show();}
}
@H_404_35@ 总结以上是内存溢出为你收集整理的在Android平板电脑上查看SQLite数据 – SQLite数据库浏览器全部内容,希望文章能够帮你解决在Android平板电脑上查看SQLite数据 – SQLite数据库浏览器所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)