- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
所以 AsyncTask 和我相处得不好。我正在尝试更好地了解它的使用方式。
所以我一直遇到这个问题,我通过 GSON AsyncTask 将 JSON API 加载到 ArrayList(称为 ratesList)中。调用成功。然后我尝试将 ratesList 内容复制到另一个名为 globalRates 的 ArrayList。这两个列表都是全局定义的。
为了确保两个列表都被填充,我从 onPostExecute 打印列表的大小并且都返回 158。
但是,一旦我尝试在 onCreate 方法上从 globalRates 列表中获取一个元素,我的程序就会崩溃。我尝试了一个 try/catch block 来查看我是否可以获得更多信息,并且错误以 NullPointerException 响应。我将在下面显示我的日志。
这是 MainActivity 类:
public class PostsActivity extends Activity {
// JSON info will be stored here through GSON
public static List<GlobalRates> ratesList = new ArrayList<GlobalRates>();
// Trying to copy contents of ratesList into this ArrayList
// Then trying to call an index from here on the onCreate method
public static List<GlobalRates> globalRates;
TextView view;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_posts);
view = (TextView) findViewById(R.id.textView1);
BitRateFetcher br = new BitRateFetcher();
br.execute();
// Error comes here. Error keeps saying 'NullPointerException'
try {
String name = globalRates.get(0).getName();
} catch (NullPointerException ex) {
Log.e("BitRateFetcher", "Error: " + ex.fillInStackTrace());
Log.e("BitRateFetcher", "Error: " + ex.getLocalizedMessage());
}
// view.setText(name);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.posts, menu);
return true;
}
private void failedLoadingPosts() {
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(PostsActivity.this,
"Failed to load Posts. Have a look at LogCat.",
Toast.LENGTH_SHORT).show();
}
});
}
private class BitRateFetcher extends AsyncTask<Void, Void, String> {
private static final String TAG = "BitRateFetcher";
public String BIT_PAY_SERVER = "https://bitpay.com/api/rates";
private ProgressDialog dialog;
@Override
protected void onPreExecute() {
// Things to be done before execution of long running operation. For
// example showing ProgessDialog
super.onPreExecute();
dialog = new ProgressDialog(PostsActivity.this);
dialog.setMessage("Please Wait... Downloading Information");
dialog.show();
}
@Override
protected String doInBackground(Void... params) {
try {
// Create an HTTP client
HttpClient client = new DefaultHttpClient();
HttpGet getBitRates = new HttpGet(BIT_PAY_SERVER);
// Perform the request and check the status code
HttpResponse bitRatesResponse = client.execute(getBitRates);
StatusLine bitRatesStatus = bitRatesResponse.getStatusLine();
if (bitRatesStatus.getStatusCode() == 200) {
HttpEntity entity = bitRatesResponse.getEntity();
InputStream content = entity.getContent();
try {
// Read the server response and attempt to parse it as
// JSON
Reader reader = new InputStreamReader(content);
Gson gson = new Gson();
ratesList = Arrays.asList(gson.fromJson(reader,
GlobalRates[].class));
content.close();
entity.consumeContent();
} catch (Exception ex) {
Log.e(TAG, "Failed to parse JSON due to: " + ex);
failedLoadingPosts();
}
} else {
Log.e(TAG, "Server responded with status code: "
+ bitRatesStatus.getStatusCode());
failedLoadingPosts();
}
} catch (Exception ex) {
Log.e(TAG, "Failed to send HTTP POST request due to: " + ex);
failedLoadingPosts();
}
return null;
}
@Override
protected void onPostExecute(String result) {
// execution of result of Long time consuming operation
globalRates = new ArrayList<GlobalRates>(ratesList);
// This shows both lists are populated.
Log.i(TAG, "Bit Rates Connected");
Log.i(TAG, "Rates List Size: " + ratesList.size());
Log.i(TAG, "Global Rates Size: " + globalRates.size());
if (dialog.isShowing()) {
dialog.dismiss();
}
}
}
这是“BitRateFetcher”日志:
04-20 22:13:55.626: E/BitRateFetcher(21097): Error: java.lang.NullPointerException
04-20 22:13:55.626: E/BitRateFetcher(21097): Error: null
04-20 22:13:56.206: I/BitRateFetcher(21097): Bit Rates Connected
04-20 22:13:56.206: I/BitRateFetcher(21097): Rates List Size: 158
04-20 22:13:56.206: I/BitRateFetcher(21097): Global Rates Size: 158
我最终要做的是从列表中抓取一个特定元素并通过 bundle 将其传递给 fragment (如果这是正确的方法)。
关于为什么会发生这种情况以及我该如何解决的任何想法?我什至尝试从 ratesList 调用一个元素,但它也崩溃了。
感谢您的帮助!
编辑:要查看它是否有更多帮助,这是关于我正在尝试做的事情的更多信息。当用户点击抽屉导航中的 ListView 时,将返回其位置编号。更多信息在代码中的注释中。这是代码:
private void displayView(int position) {
// update the main content by replacing fragments
Bundle bundle;
Fragment fragment = null;
String name;
switch (position) {
case 0:
// I want to get the name of a specific element depending on
// the position the user clicked. When i run the below line, it
// crashes and return the NullPointerException. globalRates is
// defined globally up top, similar to the code I pasted above.
name = globalRates.get( position).getName(); // <------ Crashes
// I will then pass the variable "name" into the bundle so
// that I can call it from the fragment.
bundle = new Bundle();
bundle.putString("message", "Test " + position);
fragment = new CoinFragment();
fragment.setArguments(bundle);
break;
case 1:
bundle = new Bundle();
bundle.putString("message", "Litecoin Info");
fragment = new CoinFragment();
fragment.setArguments(bundle);
break;
case 2:
bundle = new Bundle();
bundle.putString("message", "Peercoin Info");
fragment = new CoinFragment();
fragment.setArguments(bundle);
break;
case 3:
bundle = new Bundle();
bundle.putString("message", "Dogecoin Info");
fragment = new CoinFragment();
fragment.setArguments(bundle);
break;
case 4:
bundle = new Bundle();
bundle.putString("message", "Nxt Info");
fragment = new CoinFragment();
fragment.setArguments(bundle);
break;
case 5:
bundle = new Bundle();
bundle.putString("message", "Namecoin Info");
fragment = new CoinFragment();
fragment.setArguments(bundle);
break;
default:
break;
}
这可能不合适,但我真的需要通过 AsyncTask 调用 API 吗?我可以只实现一个新线程并做同样的事情吗?
最佳答案
您应该在 onPostExecute() 中移动以下内容;
// Error comes here. Error keeps saying 'NullPointerException'
try {
String name = globalRates.get(0).getName();
} catch (NullPointerException ex) {
Log.e("BitRateFetcher", "Error: " + ex.fillInStackTrace());
Log.e("BitRateFetcher", "Error: " + ex.getLocalizedMessage());
}
为什么?
因为 AsyncTask 在后台运行(换句话说在另一个线程中)。当您调用上面的代码时,它仍在处理中,因此 globalRates 列表仍然为空。
首先确保在使用 globalRates 之前调用 onPostExecute()。
当你打电话时
BitRateFetcher br = new BitRateFetcher();
br.execute();
程序不会等到 AsyncTask 完成后再跳转到下一行。
希望现在一切都清楚了。
关于android - 全局 ArrayList 和 AsyncTask 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23189879/
我的应用程序中有一个 settings.php 页面,它使用 $GLOBALS 来存储网络应用程序中使用的配置。 例如,他是我使用的一个示例设置变量: $GLOBALS["new_login_page
我正在尝试编译我们在 OS 类上获得的简单操作系统代码。它在 Ubuntu 下运行良好,但我想在 OS X 上编译它。我得到的错误是: [compiling] arch/i386/arch/start
我知道distcp无法使用通配符。 但是,我将需要在更改的目录上安排distcp。 (即,仅在星期一等“星期五”目录中复制数据),还从指定目录下的所有项目中复制数据。 是否有某种设计模式可用于编写此类
是否可以在config.groovy中全局定义资源格式(json,xml)的优先级,而不是在每个Resource上指定?例如,不要在@Resource Annotation的参数中指定它,例如: @R
是否有一些简单的方法来获取大对象图的所有关联,而不必“左连接获取”所有关联?我不能只告诉 Hibernate 默认获取 eager 关联吗? 最佳答案 即使有可能有一个全局 lazy=false(谷歌
我正在尝试实现一个全局加载对话框...我想调用一些静态函数来显示对话框和一些静态函数来关闭它。与此同时,我正在主线程或子线程中做一些工作...... 我尝试了以下操作,但对话框没有更新...最后一次,
当我偶然发现 this question 时,我正在阅读更改占位符文本。 无论如何,我回去学习了占位符。一个 SO 的回答大致如下: Be careful when designing your pl
例如,如果我有这样的文字: "hello800 more text 1234 and 567" 它应该匹配 1234 和 567,而不是 800(因为它遵循 hello 的 o,这不是一个数字)。 这
我一直在尝试寻找一种无需使用 SMS 验证系统即可验证电话号码(Android 和 iPhone)的方法。原因纯粹是围绕成本。我想要一个免费的解决方案。 我可以安全地假设 Android 操作系统会向
解决此类问题的规范 C++ 设计模式是什么? 我有一些共享多个类的多线程服务器。我需要为大多数类提供各种运行时参数(例如服务器名称、日志记录级别)。 在下面的伪 C++ 代码中,我使用了一个日志记录类
这个问题在这里已经有了答案: Using global variables in a function (25 个答案) 关闭 9 年前。 我是 python 的新手,所以可能有一个简单的答案,但我
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Does C++ call destructors for global and class static
我正在尝试使用 Objective-C 中的 ArrayList 的等价物。我知道我必须使用 NSMutableArray。我想要一个字符串列表 (NSString)。关键是我的列表应该可以从我类(c
今天刚开始学习 Android 开发,我找不到任何关于如何定义 Helper 类或将全局加载的函数集合的信息,我会能够在我创建的任何 Activity 中使用它们。 我的计划是创建(至少目前)2 个几
为什么这段代码有效: var = 0 def func(num): print num var = 1 if num != 0: func(num-1) fun
$GLOBALS["items"] = array('one', 'two', 'three', 'four', 'five' ,'six', 'seven'); $alter = &$GLOBALS
我想知道如何实现一个可以在任何地方使用您自己的设置的全局记录器: 我目前有一个自定义记录器类: class customLogger(logging.Logger): ... 该类位于一个单独的
我需要使用 React 测试库和 Jest 在我的测试中模拟不同的窗口大小。 目前我必须在每个测试文件中包含这个beforeAll: import matchMediaPolyfill from 'm
每次我遇到单例模式或任何静态类(即(几乎)只有静态成员的类)的实现时,我想知道这是否实际上不是一种黑客行为,因此只是为了设计而严重滥用类和实例的原则单个对象,而不是设计类和创建单个实例。对我来说,看起
这个问题在这里已经有了答案: Help understanding global flag in perl (2 个回答) 7年前关闭。 my $test = "There was once an\n
我是一名优秀的程序员,十分优秀!