- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取 RAW JSOn 文件并将其插入到我的表名 insectsTable
中。
这是我在 BugsContract
类中定义列名称的位置:
import android.provider.BaseColumns;
/**
* Created by man on 9/19/2017.
*/
public class BugsContract
{
public static final class BugEntry implements BaseColumns
{
public static final String TABLE_NAME = "insectTable";
public static final String COLUMN_NAME = "friendlyName";
public static final String COLUMN_SCIENTIFIC = "scientificName";
public static final String COLUMN_CLASS = "classification";
public static final String COLUMN_IMAGE = "imageAsset";
public static final String COLUMN_DANGER = "dangerLevel";
}
}
在我的BugsDbHelper类中定义如下:
import android.content.ContentValues;
import android.content.Context;
import android.content.res.Resources;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import com.google.developer.bugmaster.R;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
/**
* Database helper class to facilitate creating and updating
* the database from the chosen schema.
*/
public class BugsDbHelper extends SQLiteOpenHelper
{
private static final String TAG = BugsDbHelper.class.getSimpleName();
private static final String DATABASE_NAME = "insect.db";
private static final int DATABASE_VERSION = 1;
//Used to read data from res/ and assets/
private Resources mResources;
Context context;
SQLiteDatabase db;
public BugsDbHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
mResources = context.getResources();
db = this.getWritableDatabase();
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE "+BugsContract.BugEntry.TABLE_NAME+" ("+ BugsContract.BugEntry._ID + " INTEGER AUTOINCREMENT"+BugsContract.BugEntry.COLUMN_NAME+" TEXT, "
+ BugsContract.BugEntry.COLUMN_SCIENTIFIC + " TEXT," + BugsContract.BugEntry.COLUMN_CLASS+" TEXT,"+
BugsContract.BugEntry.COLUMN_IMAGE + " TEXT," + BugsContract.BugEntry.COLUMN_DANGER + " INTEGER);");
Log.d(TAG, "Database created successfully");
try
{
readInsectsFromResources(db);
} catch(IOException e)
{
e.printStackTrace();
} catch(JSONException e)
{
e.printStackTrace();
}
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS " + BugsContract.BugEntry.TABLE_NAME);
onCreate(db);
}
private String readJsonDataFromFile() throws IOException
{
InputStream inputStream = null;
StringBuilder builder = new StringBuilder();
try
{
String jsonDataString = null;
inputStream = mResources.openRawResource(R.raw.insects);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"));
while((jsonDataString = bufferedReader.readLine()) != null)
{
builder.append(jsonDataString);
}
}finally
{
if(inputStream != null)
{
inputStream.close();
}
}
Log.d("Suck", builder.toString());
return new String(builder);
}
/**
* Streams the JSON data from insect.json, parses it, and inserts it into the
* provided {@link SQLiteDatabase}.
*
* @param db Database where objects should be inserted.
* @throws IOException
* @throws JSONException
*/
private void readInsectsFromResources(SQLiteDatabase db) throws IOException, JSONException
{
try {
final String NAME = "friendlyName";
final String SCIENTIFIC_NAME = "scientificName";
final String CLASSIFICATION = "classification";
final String IMAGE_ASSET = "imageAsset";
final String DANGER_LEVEL = "dangerLevel";
//Parse resource into key/values
final String rawJson = readJsonDataFromFile();
JSONArray j_array = new JSONArray(rawJson);
for (int i = 0; i < j_array.length(); ++i) {
String friendlyName;
String scientificName;
String classification;
String image;
int dangerLevel;
JSONObject jsonObj = j_array.getJSONObject(i);
friendlyName = jsonObj.getString(NAME);
scientificName = jsonObj.getString(SCIENTIFIC_NAME);
classification = jsonObj.getString(CLASSIFICATION);
image = jsonObj.getString(IMAGE_ASSET);
dangerLevel = jsonObj.getInt(DANGER_LEVEL);
ContentValues contentValues = new ContentValues();
contentValues.put(BugsContract.BugEntry.COLUMN_NAME, friendlyName);
contentValues.put(BugsContract.BugEntry.COLUMN_SCIENTIFIC, scientificName);
contentValues.put(BugsContract.BugEntry.COLUMN_CLASS, classification);
contentValues.put(BugsContract.BugEntry.COLUMN_IMAGE, image);
contentValues.put(BugsContract.BugEntry.COLUMN_DANGER, dangerLevel);
db.insert(BugsContract.BugEntry.TABLE_NAME, null, contentValues);
Log.d(TAG, "Inserted successfully" + contentValues);
}
}catch(Exception e)
{
Log.e(TAG, e.getMessage(), e);
e.printStackTrace();
}
}
}
我的 JSON 文件是在资源文件夹的 raw 文件夹中定义的:
"insects": [
{
"friendlyName": "Black Widow",
"scientificName": "Latrodectus mactans",
"classification": "Arachnida",
"imageAsset": "spider.png",
"dangerLevel": 10
},
{
"friendlyName": "Brown Recluse",
"scientificName": "Loxosceles reclusa",
"classification": "Arachnida",
"imageAsset": "spider.png",
"dangerLevel": 10
},
以上只是 JSON 的示例。每次我运行该程序时,数据库、表以及表的列都会成功创建,但 JSON 不会插入到这些列中。我为我的数据编写了 ContentValues,但它们似乎不起作用。
我已经研究这个问题好几天了,但一直没能找到解决方案,所以对此的帮助就太好了!
最佳答案
首先,在BugsDbHelper
的onCreate
中,代码:
" INTEGER AUTOINCREMENT"
应该是:
" INTEGER PRIMARY KEY AUTOINCREMENT,"
请不要忘记将,
放在最后。
那么 JSON 文件可能是这样的:
{
"insects": [
{
"friendlyName": "BlackWidow",
"scientificName": "Latrodectusmactans",
"classification": "Arachnida",
"imageAsset": "spider.png",
"dangerLevel": 10
},
{
"friendlyName": "BrownRecluse",
"scientificName": "Loxoscelesreclusa",
"classification": "Arachnida",
"imageAsset": "spider.png",
"dangerLevel": 10
}
]
}
在readInsectsFromResources
中,代码:
JSONArray j_array = new JSONArray(rawJson);
应该是:
JSONObject rawJSONObject = new JSONObject(rawJson);
JSONArray j_array = rawJSONObject.getJSONArray("insects");
我已经运行了上面的代码,它可以工作。
希望有帮助。
关于java - ContentValue 对未从 RAW JSON 插入 SQLite 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46334419/
我正尝试在一些 native Rust-C 绑定(bind)上构建一个安全的包装器。我正在引用 git2-rs代码库,我遇到了以下用法: use raw; use util::Binding; pub
我想使用用户提供的字符串作为 JavaScript 函数的参数,因此需要转义所有可能导致脚本中断的字符。 这是为了与处理原始 JavaScript 的 WKWebView.evaluateJavaSc
我需要用 C# 解析一个在 Wireshark 中生成的 pcap 文件。当然,它可以使用 wireshark 正常打开并按预期显示所有数据包。 我曾尝试使用我在网上找到的两个流行的库(来自 Shar
knex.raw(sql, bindings)和 knex.schema.raw(statement) . 似乎这两个函数具有不同的签名。 如果它们相等,我该如何使用 knex.schema.raw(
我是这里的新手。 我想知道任何工具/快速方法来转换具有 3 字节 PCM 样本的 24 位 PCM 原始( headless )文件, 成一个 32 位 PCM 原始文件,每个样本有 4 个字节,4
Unhandled rejection Error: where: "raw query" has been removed, please use where ["raw query", [repl
我的任务是打开一个扩展名为 mka 的现有音频文件(Matroska 容器)并提取原始音频数据。 This示例仅显示了从 mp2 文件中提取原始数据的示例。我不知道如何使用 mka 容器执行此操作。我
在 Zend Framework 的 Response Class 中,有两个不同的数组用于存储 header :_headers[] 和 _headersRaw[]。并且有适当的方法来设置每一个:
我们可以直接从Github链接文件吗?。我知道这在谷歌代码上是允许的。这样,我就不必担心更新本地文件了。
在 TCP 中,我从 IP 摄像机接收媒体流作为 RAW。根据那里的建议,我需要把它写成文件。然后我可以用 VLC 等媒体播放器播放它。 但是当我将其写入文件并使用媒体播放器播放时,它永远不会播放损坏
我对码头公司还是个新手。我使用的是最新版本的Python、Django和Docker。我已经在这个项目上工作了两周了,我已经创建了docker-compose.yml文件,并且已经构建了我的docke
我有两只鼠标连接到我的计算机,我想制作一个记录器来区分这两者。低级鼠标 Hook 不向我提供该信息,因此我考虑捕获原始输入消息以获取鼠标的设备实例 ID。但不幸的是,原始输入寄存器仅限于我的应用程序!
我对 Laravel 还很陌生,到目前为止,我真的很喜欢 eloquent 和 querybuilder,但是一旦查询变得更加复杂,我的头就开始受伤......我刚刚完成了相当长一段时间后的 2 个工
我很困惑,真的不知道该如何选择在何处使用这两者? 我都阅读了文档 https://laravel.com/docs/5.4/queries#where-clauses 和 https://larave
mysql 表 -> 表名称td id MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT, band varchar(4) NOT NULL, PRIMARY KE
我在 ASP.net MVC 中呈现 HTML 页面: @(Html.Raw(@Model.Body)) 用于包含在模型的 Body 属性中的格式化和样式文本,但这会将 CSS 样式更改为整个页面。我
使用以下 python 读取和显示(灰度)RAW 图像: import numpy as np import matplotlib.pyplot as plt path = 'path\\to\\wh
我正在我的应用程序中构建一个 MP3 播放器,但我收到一条错误消息,指出“raw cannot be resolved or is not a field”在线:mMediaPlayer = Medi
我正在尝试使用枚举作为 Hibernate 中 map 的映射键,但 Hibernate 将我的枚举存储为 RAW: 我有这个枚举: public enum AccountType implement
我想在 python 中构建一个数据包嗅探器,它能够嗅探数据包、分析它们并在第二步中将数据包注入(inject)本地接口(interface)。 我找到了一个示例,我必须稍微调整一下才能工作。我的工作
我是一名优秀的程序员,十分优秀!