- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用下面的代码。它在 Android Studio 中出错。你能帮忙吗?根据我的理解,args[0] 没有填充某些值。这是为什么?如果 args[0] 没有为此选择任何其他实现的任何值。
import android.app.Activity;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.DocumentsContract;
import android.renderscript.Element;
import android.util.Log;
import android.widget.TextView;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.ElementType;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
public class StockInfoActivity extends Activity{
private static final String TAG="StockQoute";
static final String KEY_ITEM="quote";
static final String KEY_YEAR_LOW="YearLow";
static final String KEY_YEAR_HIGH="YearHigh";
static final String KEY_DAYS_LOW="DaysLow";
static final String KEY_DAYS_HIGH="DaysHigh";
static final String KEY_CHANGE="Change";
static final String KEY_LAST_TRADE="LastTradePriceOnly";
static final String KEY_DAYS_CHANGE="DaysRange";
TextView companyNameView;
TextView yearLowView ;
TextView yearHighView ;
TextView daysLowView ;
TextView daysHighView ;
TextView LastPriceView ;
TextView changeView ;
TextView dailyPriceRangeView;
String name="";
String yearLow="";
String yearHigh="";
String daysLow="";
String daysHigh="";
String lastTradePrice="";
String change="";
String daysRange="";
String yahooURLFirst="https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quote%20where%20symbol%20in%20(%22";
String yahooURLSecond="%22)&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
protected void onCreate (Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.get_stock_qoute);
Intent intent=getIntent();
String stockSymbol=intent.getStringExtra(MainActivity.STOCK_SYMBOL);
companyNameView =(TextView)findViewById(R.id.companyNameView);
yearLowView =(TextView)findViewById(R.id.yearLow);
yearHighView =(TextView)findViewById(R.id.yearHigh);
daysLowView =(TextView)findViewById(R.id.daysLow);
daysHighView =(TextView)findViewById(R.id.daysHigh);
LastPriceView =(TextView)findViewById(R.id.lastPrice);
changeView =(TextView)findViewById(R.id.change);
dailyPriceRangeView =(TextView)findViewById(R.id.dailyPriceRange);
//Log.d(TAG, "Before URL creation" + stockSymbol);
final String yqlURL=yahooURLFirst+stockSymbol+yahooURLSecond;
//Log.d(TAG, "Before URL creation" + yqlURL);
new MyAsyncTask().execute();
}
private class MyAsyncTask extends AsyncTask<String,String,String>{
protected String doInBackground(String... args) {
try{
String newstr=args[0];
Log.d("Sync",newstr);
URL url= new URL(args[0]);
//Log.d("Sync1","We are here");
URLConnection conn=url.openConnection();
HttpURLConnection httpconn=(HttpURLConnection)conn;
int responseCode=httpconn.getResponseCode();
if(responseCode==HttpURLConnection.HTTP_OK){
InputStream in=httpconn.getInputStream();
DocumentBuilderFactory dbf= DocumentBuilderFactory.newInstance();
DocumentBuilder db=dbf.newDocumentBuilder();
Document dom=db.parse(in);
org.w3c.dom.Element docEl= (org.w3c.dom.Element) dom.getDocumentElement();
NodeList nl = docEl.getElementsByTagName("qoute");
Log.d("Sync3","We are here");
if(nl!=null && nl.getLength() > 0){
for(int i=0;i<=nl.getLength();i++){
StockInfo theStock=getStockInfo(docEl);
name=theStock.getName();
yearLow=theStock.getYearLow();
yearHigh=theStock.getYearHigh();
daysLow=theStock.getDaysLow();
daysHigh=theStock.getDaysHigh();
lastTradePrice=theStock.getLastTradePriceonly();
change=theStock.getChange();
daysRange=theStock.getDaysRange();
}
}
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
}
finally { }
return null;
}
protected void onPostExecute(String result){
companyNameView.setText(name);
yearHighView.setText("Year High: " +yearHigh);
yearLowView.setText("Year Low: "+yearLow);
daysHighView.setText("Days High: "+daysHigh);
daysLowView.setText("Days Low:"+ daysLow );
LastPriceView.setText("Last Price"+ lastTradePrice);
changeView.setText("Change: "+change);
dailyPriceRangeView.setText("Daily Price Range: "+daysRange) ;
}
private StockInfo getStockInfo(org.w3c.dom.Element entry){
String stockName=getTextValue(entry,"Name");
String stockYearLow=getTextValue(entry,"YearLow");
String stockYearHigh=getTextValue(entry,"YearHigh");
String stockDaysLow=getTextValue(entry,"DaysLow");
String stockDaysHigh=getTextValue(entry,"DaysHigh");
String stockLastTradePrice=getTextValue(entry,"LastTradePriceOnly");
String stockChange=getTextValue(entry,"Change");
String stockDaysRange=getTextValue(entry,"DaysRange");
StockInfo theStock=new StockInfo(stockDaysLow
,stockDaysHigh ,stockYearLow ,stockYearHigh ,stockName,stockLastTradePrice ,stockChange ,stockDaysRange);
return theStock;
}
private String getTextValue(org.w3c.dom.Element Entry, String tagName)
{
String tagValueToReturn=null;
NodeList nl=Entry.getElementsByTagName(tagName);
if(nl!=null && nl.getLength() > 0){
org.w3c.dom.Element ele=(org.w3c.dom.Element)nl.item(0);
tagValueToReturn=ele.getFirstChild().getNodeValue();
}
return tagValueToReturn;
}
}
}
低于错误
FATAL EXCEPTION: AsyncTask #1
Process: com.shravan.stockinfo, PID: 2188
java.lang.RuntimeException: An error occured while executing doInBackground()
at android.os.AsyncTask$3.done(AsyncTask.java:304)
at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355)
at java.util.concurrent.FutureTask.setException(FutureTask.java:222)
at java.util.concurrent.FutureTask.run(FutureTask.java:242)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
at java.lang.Thread.run(Thread.java:818)
Caused by: java.lang.ArrayIndexOutOfBoundsException: length=0; index=1
at com.shravan.stockinfo.StockInfoActivity$MyAsyncTask.doInBackground(StockInfoActivity.java:89)
at com.shravan.stockinfo.StockInfoActivity$MyAsyncTask.doInBackground(StockInfoActivity.java:85)
at android.os.AsyncTask$2.call(AsyncTask.java:292)
at java.util.concurrent.FutureTask.run(FutureTask.java:237)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
at java.lang.Thread.run(Thread.java:818)
最佳答案
您正在像 new MyAsyncTask().execute();
一样运行 AsyncTask
,这意味着您没有向它传递任何参数。
但是在 doInBackground
方法中,您试图在 String newstr=args[0];
处获取一个值,但是 args
数组的长度为 0 .
你需要像这样启动AsycTask
new MyAsyncTask().execute(yqlURL);
关于android - java.lang.RuntimeException : An error occured while executing doInBackground() 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35846544/
当尝试使用 Async task 执行 HTTP post 时,我得到以下信息: ASyncTask: DoInBackground(String...) clashes with DoInBackg
我正在尝试创建一个使用多个端口的服务器,以便可以轻松发送和接收不同的数据和信息,但在我的 doInBackground 方法中,我的代码卡在了 socket.receive 上,这是我的代码 whil
我正在开发一个基本的 Android 应用程序,它使用 HttpURLConnection 进行POST。我想从我的 Web API 返回响应消息。 我的MainActivity.java publi
我创建了一个小型 BackGroundWorker 来测试 pdf 文件。一切正常,直到代码捕获 pdf 文件的路径。我真的不知道为什么它不起作用 -.- 我也没有在 Eclipse 的控制台中收到任
我有一系列的 asyncTasks 一个接一个地执行以从服务器下载 pdf。但有时当我最小化应用程序然后恢复它(在后台下载)时,下一个 asyncTask 将在不久之后执行当前运行的 asyncTas
我在 AsyncTask 中有一个自定义进度对话框,它充当下载进度,我想在按下自定义取消按钮时中断 doInBackground。似乎当对话框关闭时,doInBackground 恢复没有任何问题!
我正在尝试从代码中的 5 个 URL 中获取值: new JsonTask().execute(urlPosts, urlPhotos, urlComments, urlComments, urlA
我有以下代码:- public class ByState extends Fragment { @Nullable @Override public View onCreat
有谁知道为什么 doInBackground 需要很长时间才能启动?这是一个例子: runDoInBackground(){ print("starting task"); new MyA
try { Get_Webpage obj = new Get_Webpage(url); directory_listings = obj.get_webpage_source();
我有一个带有标记为“播放”的单个按钮的基本 Swing UI。按下按钮时,标签变为“暂停”。现在按下按钮时,它会变为“恢复”。 在“播放”时,我正在实例化并执行一个 SwingWorker。我想要的是
我正在尝试创建一个使用 api 和 JSONObject 从网络提取信息的应用程序。我了解到我需要使用 asyncTask 来完成此操作,因此我创建了一个扩展 asyncTask 的类。但应用程序不断
我是android新手,我正在尝试在android中实现socket,它是一个简单的客户端服务器应用程序。我创建了 2 个按钮(“连接”、“断开连接”),并使用 AysncTask doInBackg
我在 AsynTask 类的 doInBackground 方法中使用 cognitouserpool 代码。但我的方法没有调用。我尝试过用日志检查它。它不起作用。 异步任务 public c
所以我进入了 SwingWorkers 来处理我使用不同的类和线程进行的文本操作。如下所示,我的 Swingworker 获取文件路径并扫描文本,将行传递给字符串。使用 getData(),我将扫描的
我试图在数据库上执行一些任务时显示进度条。但是,进度栏卡住,并且我想在数据库上执行的操作未执行。据我了解,为了保证 Swing 中的正确并发性,我需要在辅助线程上执行数据库任务。我也明白我的错误与 J
我想使用 ImageLoader.loadImage 下载多个图像,这将启动多个线程。因为它们需要一段时间才能执行,而且我不想锁定 UI,所以我想在 AsyncTask 的 doInBackgroun
我正在尝试使用 php 将从 Facebook api 获取的用户详细信息存储到数据库中。我使用 JSONParser 类来执行返回 JSON 对象的 POST。当我从 AsyncTask 中调用 J
我是初学者。我目前正在创建一个在用户和我的服务器之间建立连接的应用程序。例如,用户输入一些信息并单击按钮,然后所有信息将保存在我的服务器数据库表中。然而,在输入信息并单击按钮后,应用程序崩溃了。 lo
我正在尝试从 android Activity (一个简单的登录表单)执行 http 请求/响应,但是在我完成代码后它给了我一个错误,因为我必须将它放在一个线程中,我不熟悉异步任务,但我尝试实现它,但
我是一名优秀的程序员,十分优秀!