我正在尝试使用java从json文件中读取。到目前为止,这就是我所拥有的:
import jdk.nashorn.internal.parser.JSONParser;
import java.io.FileReader;
import java.util.Objects;
public static void main (String[] args){
JSONParser parser = new JSONParser(); //Error : JSONParser() in JSONParser cannot be applied to expected para
我正在尝试制作一个自定义的android库。
调用我的LIb为:
mylib = new Mylib();
JSONObject dict = new JSONObject();
dict.put("Daata",1);
mylib.initialize(dict);
Mylib代码:
public class Mylib {
public Mylib() {
}
public void initialize(JSONObject message) th
当我将数据保存到web服务器时,我的应用程序工作得很好,但是当我将它保存在本地主机数据库中时,会产生Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject错误。
这是我的代码:
try
{
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("www.website.com/exmpl/insertData.php"); //
我正在学习Java线程的入门教程。代码非常简单
public interface Runnable {
void run();
}
public class RunnableThread implements Runnable {
Thread runner;
public RunnableThread() {
}
public RunnableThread(String threadName) {
runner = new Thread(this, threadName); // (1) Create a new thread.
我需要从自定义类的toString的HashMap和一个浮点值创建一个JSONObject。我尝试了下面的代码,希望它能正常工作:
public class MyClass {
...
public String toString() {
return "a nice string"
}
}
HashMap<MyClass,Float> map = new HashMap<MyClass,Float>();
map.put(...);
JSONObject json = new JSONObject(map)
我不断地发现错误:
3 errors found:
File: C:\Users\TUFRob\Documents\Computer Science II\Retail\RetailItemDemo.java [line: 6]
Error: constructor RetailItem in class RetailItem cannot be applied to given types;
required: int,double,java.lang.String
found: no arguments
reason: actual and formal argument l
我有以下代码
public class ShufflingListAndArray
{
public static void main(String[] args) throws IOException
{
List services = new ArrayList (
Arrays.asList("COMPUTER", "DATA", "PRINTER"));
Random rnd=new Random();
String s = services.get(rnd.nextInt(services.size
我试图将blogger博客内容提取到android应用程序中,为此我使用了Blogger API v3,每当我尝试在android应用程序中获取JSON对象时,我都会得到一个错误:“java.lang.String类型的值不能转换为JSONObject”,下面是我的代码:
MainActivity:
public class MainActivity extends Activity {
private TextView tmpText;
private final String api_key = "myApiKey";
private final String blog_
每当我试图用JSON Simple解析一个包含JSON数组的文件时,我都会得到这个错误消息...代码在示例中看起来总是很好,但我每次尝试时都会得到这样的结果!请帮帮我!
Exception in thread "main" java.lang.ClassCastException:
class org.json.simple.JSONObject cannot be cast to class java.lang.String (org.json.simple.JSONObject is in unnamed module of loader 'app';
我尝试将json_data从服务器保存到sqlite,但收到错误消息
Value Next of type java.lang.String cannot be converted to JSONArray
这是我的json:
下面是我的java代码:
String json_data = stringBuilder.toString().trim();
JSONObject object = new JSONObject(json_data);
JSONObject object1 = new JSONObject("Next");
JSONArray Jarray = o
如何处理此问题,使其不会出现以下错误
JSONObject dataObject = new JSONObject(data);
String currentDynamicKey = "7";
JSONObject currentDynamicValue = dataObject.getJSONObject(currentDynamicKey);
错误:
org.json.JSONException: Value at 7 of type java.lang.String cannot be converted to JSONObject
json数据:
{"2
这是解析我的url:{"status":0,"items":"1333333454510|-7611868|-7222457"时得到的{"status":0,"items":"1333333454510|-7611868|-7222457"
现在,我需要将分离的数字分别作为long。
如果尝试将其转换为string:org.json.JSONException: Value 1333333454510|-7611868|-7222457 at items of type java.lang.Stri
因此,我试图从我的Android项目中的.json文件中读取数据:
val file = context.assets.open("myfile.json").bufferedReader().readText()
这很好,并成功地将我的.json文件打印为一个String。
但是,我想知道bufferedReader()到底是什么,以及为什么不能在打开的.json文件上直接调用.readText()。
PS:readText()返回一个String。然而:
val json2: JSONObject = JSONObject("mystring")返回:
Ca
错误:
Value <html><head><title>Apache of type java.lang.String cannot be converted to JSONObject
org.json.JSONException: Value <html><head><title>Apache of type java.lang.String cannot be converted to JSONObjectat org.json.JSON.typeMismatch(JSON.java:111)
at org.js
我正在尝试显示从api中获取的数据。我可以将数据显示为文本视图和日志,但无法将其显示为列表。
我收到了一个错误"Cannot resolve constructor“
Error:(72, 68) error: no suitable constructor found for ArrayAdapter(<anonymous FutureCallback<JsonArray>>,int,ArrayList<String>) constructor ArrayAdapter.ArrayAdapter(Context,int,int) is not ap
按照sdk的配置,能浏览目录看到文件,使用下载代码的时候报-25000错误
code =-25000; msg =Value You of type java.lang.String cannot be converted to JSONObject
标题:Android SDK - 对象存储 - 文档首页 - 腾讯云文档平台 - 腾讯云
地址:https://cloud.tencent.com/document/product/436/6517