嗨我想從我的android應用程序的CSV格式的數據庫中導出我的數據。 我該怎麼做?任何身體幫助我?提前致謝。如何將數據庫記錄轉換爲android中的csv文件?
6
A
回答
21
喜不喜歡這個....
package com.my.CSVcreation;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class CSVCreationActivity extends Activity {
TextView empidtxt,empnametxt,empsaltxt;
EditText empidet,empnameet,empsalet;
Button insetbt,viewbt;
SQLiteDatabase myDatabase=null;
String DataBase_Name="employeedata";
String Table_Name="employeedetails";
Cursor c1,c2;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
empidtxt=(TextView)findViewById(R.id.tv1);
empnametxt=(TextView)findViewById(R.id.tv2);
empsaltxt=(TextView)findViewById(R.id.tv3);
empidet=(EditText)findViewById(R.id.et1);
empnameet=(EditText)findViewById(R.id.et2);
empsalet=(EditText)findViewById(R.id.et3);
insetbt=(Button)findViewById(R.id.bt1);
viewbt=(Button)findViewById(R.id.bt2);
try {
myDatabase=this.openOrCreateDatabase(DataBase_Name, MODE_PRIVATE, null);
System.out.println("databse has been creates.....");
myDatabase.execSQL("create table if not exists " + Table_Name + "(empid integer(10),empname varchar(50),empsal integer(10))");
System.out.println("table has been created.....");
c1 = myDatabase.rawQuery("select * from " + Table_Name, null);
c1.moveToFirst();
int count1 = c1.getCount();
System.out.println("columns --->" + count1);
if (count1 == 0) {
myDatabase.execSQL("insert into "+Table_Name+ "(empid,empname,empsal)" +"values(101,'asha',20000)");
System.out.println("data base has been inserted.....");
}
c2 = myDatabase.rawQuery("select * from " + Table_Name, null);
c2.moveToFirst();
int count2 = c2.getCount();
System.out.println("columns --->" + count2);
final int column1 = c2.getColumnIndex("empid");
final int column2 = c2.getColumnIndex("empname");
final int column3 = c2.getColumnIndex("empsal");
insetbt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (c2 != null) {
do {
int id = c2.getInt(column1);
String name = c2.getString(column2);
int salary = c2.getInt(column3);
System.out.println("empID --> "+id);
System.out.println("empNAME --> "+name);
System.out.println("empsalalry --> "+salary);
} while(c2.moveToNext());
}
}
});
viewbt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
new ExportDatabaseCSVTask().execute("");
} catch(Exception ex) {
Log.e("Error in MainActivity",ex.toString());
}
}
});
}
catch(SQLException ex) { ex.printStackTrace(); }
/*finally {
if (myDB != null) { myDB.close(); }
}*/
}
public class ExportDatabaseCSVTask extends AsyncTask<String, Void, Boolean> {
private final ProgressDialog dialog = new ProgressDialog(CSVCreationActivity.this);
@Override
protected void onPreExecute() {
this.dialog.setMessage("Exporting database...");
this.dialog.show();
}
protected Boolean doInBackground(final String... args) {
File dbFile = getDatabasePath("myDatabase.db");
System.out.println(dbFile); // displays the data base path in your logcat
File exportDir = new File(Environment.getExternalStorageDirectory(), "");
if (!exportDir.exists()) { exportDir.mkdirs(); }
File file = new File(exportDir, "myfile.csv");
try {
file.createNewFile();
CSVWriter csvWrite = new CSVWriter(new FileWriter(file));
Cursor curCSV = myDatabase.rawQuery("select * from " + Table_Name,null);
csvWrite.writeNext(curCSV.getColumnNames());
while(curCSV.moveToNext()) {
String arrStr[] ={curCSV.getString(0),curCSV.getString(1),curCSV.getString(2)};
// curCSV.getString(3),curCSV.getString(4)};
csvWrite.writeNext(arrStr);
}
csvWrite.close();
curCSV.close();
return true;
} catch(SQLException sqlEx) {
Log.e("MainActivity", sqlEx.getMessage(), sqlEx);
return false;
} catch (IOException e) {
Log.e("MainActivity", e.getMessage(), e);
return false;
}
}
protected void onPostExecute(final Boolean success) {
if (this.dialog.isShowing()) { this.dialog.dismiss(); }
if (success) {
Toast.makeText(CSVCreationActivity.this, "Export successful!", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(CSVCreationActivity.this, "Export failed", Toast.LENGTH_SHORT).show();
}
}
}
而且你會從以下站點https://code.google.com/p/secrets-for-android/source/checkout得到CSVReader和CSVWriter文件。祝一切順利。
不要忘記允許添加到您的清單文件<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
相關問題
- 1. 將CSV文件轉換爲TF記錄
- 2. 將CSV文件中的同義記錄轉換爲MySQL數據庫條目
- 3. Android將sqlite單記錄轉換爲csv
- 4. 將數據庫中的記錄轉換爲Drupal數據庫
- 5. 如何將sqlite數據庫轉換爲csv文件格式?
- 6. 將blob數據轉換爲CSV文件
- 7. 將SQL數據庫/ .SQL文件轉換爲CSV文件
- 8. 將CSV文件轉換爲Mysql(.sql)數據庫文件?
- 9. 如何將記錄集從數據庫轉換爲數組?
- 10. 如何將Facebook用戶數據轉換爲我的數據庫中的記錄?
- 11. 如何將SDF文件數據庫轉換爲SqlServer數據庫
- 12. 將數據庫中的記錄轉換爲XML中的騾
- 13. 將多個數據庫轉換爲CSV
- 14. 如何將CSV轉換爲T-SQL中的記錄集?
- 15. 如何將csv文件讀取爲「記錄」數據類型?
- 16. 如何將文本文件轉換爲列格式記錄(如excel或csv)
- 17. 如何將csv數據轉換爲netsuite?
- 18. 將數據庫記錄轉換爲可讀文本 - ASP
- 19. 如何將HSSFWorkbook轉換爲CSV文件..?
- 20. 如何將.rpt文件轉換爲csv
- 21. 將數據庫.db文件轉換爲.csv
- 22. 將CSV文件轉換爲Mysql數據庫PHP
- 23. 將MySql數據庫記錄轉換爲PHP中的XML
- 24. 如何將數據從(.ddm .pnt .fdt .bin)文件轉換爲.csv
- 25. 如何將csv文件數據轉換爲NSMutabledictionary
- 26. 如何將csv文件數據轉換爲列表?
- 27. 如何將H2Database數據庫文件轉換爲MySQL數據庫.sql文件?
- 28. 如何將csv文件轉換爲vb.net中的XLS文件
- 29. 如何將CSV文件轉換爲R中的.txt文件
- 30. 如何將.txt文件轉換爲matlab中的.csv文件?
[轉換數據庫.db文件到的.csv]可能重複(http://stackoverflow.com/questions/8665057/convert-database-db -file-into-csv) – 2012-03-08 22:27:12