android 数据导出xml过大,导出数据库文件为文本或xml在android中

public class DataXmlExporter extends DataBaseDemoActivity {

static final String DATASUBDIRECTORY = "bookwormdata";

// private final SQLiteDatabase db;

private XmlBuilder xmlBuilder;

Button butt;

/* public DataXmlExporter(final SQLiteDatabase db) {

this.db = db;

}*/

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main7);

butt=(Button)findViewById(R.id.exportxml);

String exportFileNamePrefix=exportxml;

// public void export(final String dbName, final String exportFileNamePrefix) throws IOException {

Log.i(Constants._COUNT, "exporting database - " + dbname + " exportFileNamePrefix=" + exportFileNamePrefix);

try {

xmlBuilder = new XmlBuilder();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

xmlBuilder.start(dbname);

// get the tables

String sql = "select * from dept";

Cursor c = db.rawQuery(sql, new String[0]);

if (c.moveToFirst()) {

//while (c.moveToNext()) {

String tableName ="dept";//c.getString(c.getColumnIndex("dep_id"));

// skip metadata, sequence, and uidx (unique indexes)

if (!tableName.equals("android_metadata") && !tableName.equals("sqlite_sequence")

&& !tableName.startsWith("uidx")) {

try {

exportTable(tableName);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

// }

}

String xmlString = null;

try {

xmlString = xmlBuilder.end();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

try {

writeToFile(xmlString, exportFileNamePrefix + ".xml");

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

Log.i(Constants._COUNT, "exporting database complete");

Toast.makeText(DataXmlExporter.this, "DB xml backup Successfully", 2000).show();

butt.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {

// TODO Auto-generated method stub

Intent intent = new Intent(DataXmlExporter.this, DataBaseDemoActivity.class);

startActivity(intent);

}

});

}

private void exportTable(final String tableName) throws IOException {

xmlBuilder.openTable(tableName);

String sql = "select * from " + tableName;

Cursor c = db.rawQuery(sql, new String[0]);

if (c.moveToFirst()) {

int cols = c.getColumnCount();

do {

xmlBuilder.openRow();

for (int i = 0; i < cols; i++) {

/*if(i==6)

{

//String id = c.getString(c.getColumnIndex("photo"));

String str = new String(image);

xmlBuilder.addColumn(c.getColumnName(i), str);

}*/

xmlBuilder.addColumn(c.getColumnName(i), c.getString(i));

}

xmlBuilder.closeRow();

} while (c.moveToNext());

}

c.close();

xmlBuilder.closeTable();

}

private void writeToFile(final String xmlString, final String exportFileName) throws IOException {

File dir = new File(Environment.getExternalStorageDirectory(), DataXmlExporter.DATASUBDIRECTORY);

if (!dir.exists()) {

dir.mkdirs();

}

File file = new File(dir, exportFileName);

file.createNewFile();

ByteBuffer buff = ByteBuffer.wrap(xmlString.getBytes());

FileChannel channel = new FileOutputStream(file).getChannel();

try {

channel.write(buff);

} finally {

if (channel != null) {

channel.close();

}

}

}

/**

* XmlBuilder is used to write XML tags (open and close, and a few attributes)

* to a StringBuilder. Here we have nothing to do with IO or SQL, just a fancy StringBuilder.

*

* @author ccollins

*

*/

static class XmlBuilder {

private static final String OPEN_XML_STANZA = "<?xml version=\"1.0\" encoding=\"utf-8\"?>";

private static final String CLOSE_WITH_TICK = "'>";

private static final String DB_OPEN = "

private static final String TABLE_CLOSE = "";

private static final String ROW_OPEN = "";

private static final String ROW_CLOSE = "";

private static final String COL_OPEN = "

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值