The creation and management of the database can be done using the Sqliteopenhelper that comes with Android, with two limitations:(1) The database is created in the memory card, the size is limited, the creation location is in the/data/data/application name/databases (can be viewed using Eclispe ddms).(2) If you cannot get root permissions, you cannot view the created database directly.In view of the above l
public static final String DATABASE_NAME = "/mnt/sdcard/demo. db "; // database name public static final String TABLE_NAME =" mytag "; // data table name. A database can contain multiple data tables, similar to Sheet 1 in excel, sheet2 // MyDBHelper constructor. We are concerned with the name DATABASE_NAME and VERSION public MyDBHelper (Context context) {super (context, DATABASE_NAME, null, VERSION );}
Because if it is just a separate file name, The Last database file created is saved on the in
/DEMO.DB"; Database name public
static FINAL String table_name = "mytag";//datasheet name, a database can contain more than one datasheet, similar to the Sheet1,sheet2 in Excel
// Mydbhelper's constructor, we are concerned with the name database_name and version versions public
Mydbhelper {
Super database_name, NULL, VERSION);
Because if just a separate file name, the last created database file is stored in the phone's internal memory card (not
Android implements SD card and memory file storage in the same way. The method for obtaining the file path is basically the same as that of java. The following is the code of the program. The configuration location and implementation are different. Others are the same. The following code is used:
Main. xml:
[Html]Android
We often need access to the contents of the SD card in the development of Android, and because there are so many files, we want to search the SD card. This article gives an example of an Android development that demonstrates how t
This article aims to introduce some basic commands on how to manage the SD card content in the android simulator, and also recommends a more practical tool.
My environment: Windows 7 + Android SDK 2.21. Create an SD card and mount
Platform: s5pc110
System: android2.3
Kernel: linux2.6.35
1, android2.3.4 _ kernel_2.6.35_t34h \ arch \ Arm \ mach-s5pv210 \ kconfig
Select initi_dev_hsmmc
Select s3_dev_hsmmc1 if! S5pv210_sd_ch0_8bit
Select initi_dev_hsmmc2 if! S5pv210_sd_ch1_8bit
Select initi_dev_hsmmc3 if! S5pv210_sd_ch2_8bit
After adding the preceding information to the kernel, you can see the following:
There is a scanned card.
[2, 73.852104] MMC e_removed
[2, 74.058867] mmc_resca
1, if the user is only the general degree of use of the simulator, and will not download a large number of games and application tools, then expand the SD card capacity is also unnecessary, 2G space equivalent to the current market of most Android phone's SD card configurati
Android-create a database to the SD cardSQLite comes with SQLiteOpenHelper, while SQLiteOpenHelper stores the database to/data/package name/databasas, in this case, the SQLite database cannot be seen on a mobile phone without a root user. So, in another way, store the database SQLite on the SD card. The getWritableData
This article illustrates the method of acquiring SD card path and remaining capacity by Android programming. Share to everyone for your reference, specific as follows:
public static string Getexternalstoragepath () {
//Get SDcard status
string state = Android.os.Environment.getExternalStorageState ();
To determine if sdcard exists and is available
if
Public Longgetsdallsize () {3 //get SD card file path4File Path =environment.getexternalstoragedirectory ();5StatFs SF =NewStatFs (Path.getpath ());6 //gets the size of a single data block (Byte)7 LongBlockSize =Sf.getblocksizelong ();8 //get the number of all data blocks9 LongAllblocks =Sf.getblockcountlong ();Ten //return
command is as follows: emulator-sdcard E: \ sdcard. img
Run as --> RUN configurations --> target --> aditional emulator command line options:-sdcard
3. Import/Export files to the SD card
In cmd: ADB push
This command will test the test.txt file under the current directory to the sdcard, and the file name will not change. The first test.txt is the path of the local file, and sdcard/test.txt is the
This paper illustrates the method of the diagnosis of SD card state by Android programming. Share to everyone for your reference, specific as follows:
First we need to increase the SD card access in Androidmanifest.xml:
Then we write a generic class to hold th
Debugging related to SD card is often encountered in andorid development, such as MP3 files and image files.
When developing a simulator, you can simulate an SD card through a hard disk. The specific method is:
1. Create an SD car
1, first to manifest registered SD card read and Write permissions
To illustrate, I'm not using Mainactivity.class as a software portal here.
Copy Code code as follows:
Androidmanifest.xml
Package= "COM.TES.TEXTSD"
Android:versioncode= "1"
Android:versionname= "1.0" >
Android:minsdkversion= "8"
Android:targetsdkversion= "/>"
Android:allowbackup= "true"
android:icon= "@drawable/ic_launch
The android simulator allows us to use the disk image in FAT32 format as the SD card simulation:All of the following operations are performed in Windows
First, run cmd to go to the command line interface (you need to set the tools in the directory where your android SDK is located to the environment variable path in
This article illustrates the way Android reads images in SD cards. Share to everyone for your reference, specific as follows:
First, get access to read SD card
Second, find the directory of SD card
/**
* Env
This article originates from: http://blog.csdn.net/dt235201314/article/details/73176149SOURCE download welcome Star (updating): Https://github.com/JinBoy23520/CoderToDeveloperByTCLerI. StatementThis week's learning content is Android storage, requirements: Database SQLite related operations, commonly used file access methods, as well as practical learning, the main learning SQLITE,SD
can store more data.
2. Store database files in the SD card!
What is sqlitedatabase?
An instance of sqlitedatabase represents an SQLite database. Through some methods of the sqlitedatabase instance, we can execute SQL statements to add, delete, query, and modify data databases. Note that the database is private to an application, and the database name is unique in an application.
What is sqliteopenhelpe
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.