- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我只是出于个人原因制作一个小应用程序。基本上它所做的就是从网站解析 xml,然后返回颜色、标题和作者的列表,然后将其全部显示在 ListView 中。它有点工作,但有时我会得到这些indexoutofboundsExceptions,例如总是出现在for循环中。更好地解释 for 循环。结果是一个数组列表。 ListView 中的每一行由 3 个元素组成:标题、用户名和颜色。 for 循环迭代数组,基本上将值分配给行,因此最初第一个元素将分配给标题,第二个元素将分配给用户名,依此类推。这种模式只是不断重复。如果有人看到这个问题或者知道更好的方法来做到这一点,请分享:)
for (int i = 0; i < result.size(); i++) {
sr = new SearchResults();
sr.setTitle(result.get(i));
i++;
sr.setUser(result.get(i));
i++;
sr.setHex(result.get(i));
results.add(sr);
}
错误通常看起来像这样:
07-11 14:48:08.272: E/AndroidRuntime(15370): FATAL EXCEPTION: main
07-11 14:48:08.272: E/AndroidRuntime(15370): java.lang.IndexOutOfBoundsException: Invalid index 62, size is 62
这是代码:
public class ColorsActivity extends ListActivity {
/** Called when the activity is first created. */
private int selection = 0;
private String info;
private ArrayList<String> myArr = new ArrayList<String>();
private int resultOffset=0;
private TextView settings;
private SearchResults sr = new SearchResults();
private ArrayList<SearchResults> results = new ArrayList<SearchResults>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
settings = (TextView) findViewById(R.id.settings_text);
final ListView lv = getListView();
lv.setDividerHeight(0);
colorTask refTask = new colorTask();
refTask.execute();
settings.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
colorTask refTask = new colorTask();
refTask.execute();
}
});
}
public class MyCustomBaseAdapter extends BaseAdapter {
private ArrayList<SearchResults> searchArrayList;
private LayoutInflater mInflater;
public MyCustomBaseAdapter(Context context, ArrayList<SearchResults> results) {
searchArrayList = results;
mInflater = LayoutInflater.from(context);
}
public int getCount() {
return searchArrayList.size();
}
public Object getItem(int position) {
return searchArrayList.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.list_item, null);
holder = new ViewHolder();
holder.txtHex = (TextView) convertView.findViewById(R.id.text1);
holder.txtTitle = (TextView) convertView.findViewById(R.id.TextView02);
holder.txtUser = (TextView) convertView.findViewById(R.id.TextView01);
holder.txtColorValue = (TextView) convertView.findViewById(R.id.TextView03);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.txtTitle.setText(searchArrayList.get(position).getTitle());
holder.txtUser.setText(searchArrayList.get(position).getUser());
String c = searchArrayList.get(position).getHex();
holder.txtHex.setBackgroundColor(Integer.parseInt(c, 16)+0xFF000000);
holder.txtColorValue.setText(searchArrayList.get(position).getHex());
return convertView;
}
class ViewHolder {
TextView txtTitle;
TextView txtUser;
TextView txtHex;
TextView txtColorValue;
}
}
class colorTask extends AsyncTask<String, Void, ArrayList<String>> {
private final ProgressDialog dialog = new ProgressDialog(ColorsActivity.this);
// can use UI thread here
protected void onPreExecute() {
this.dialog.setMessage("Contacting server...");
this.dialog.show();
}
protected ArrayList<String> doInBackground(final String... args) {
URL url = null;
ParsedExampleDataSet parsedExampleDataSet = null;
try {
if (selection == 0) {
url = new URL ("http://www.colourlovers.com/api/colors/top?resultOffset=" + resultOffset);
}
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
SAXParserFactory spf = SAXParserFactory.newInstance();
SAXParser sp = null;
try {
sp = spf.newSAXParser();
} catch (ParserConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
/* Get the XMLReader of the SAXParser we created. */
XMLReader xr = null;
try {
xr = sp.getXMLReader();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
/* Create a new ContentHandler and apply it to the XML-Reader*/
getColors myExampleHandler = new getColors(selection);
xr.setContentHandler(myExampleHandler);
/* Parse the xml-data from our URL. */
try {
xr.parse(new InputSource(url.openStream()));
parsedExampleDataSet =
myExampleHandler.getParsedData();
myArr = parsedExampleDataSet.toArrayList();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SAXException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return myArr;
}
// can use UI thread here
protected void onPostExecute(final ArrayList<String> result) {
if (this.dialog.isShowing()) {
this.dialog.dismiss();
}
if (result != null) {
for (int i = 0; i < result.size(); i++) {
sr = new SearchResults();
sr.setTitle(result.get(i));
i++;
sr.setUser(result.get(i));
i++;
sr.setHex(result.get(i));
results.add(sr);
}
ListView lv = getListView();
lv.setAdapter(new MyCustomBaseAdapter(ColorsActivity.this, results));
resultOffset += 20;
} else {
Toast.makeText(ColorsActivity.this, "Error contacting server.", Toast.LENGTH_SHORT).show();
}
}
}
public class SearchResults {
private String title = "";
private String hex = "";
private String user = "";
public void setTitle(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
public void setHex(String hex) {
this.hex = hex;
}
public String getHex() {
return hex;
}
public void setUser(String user) {
this.user = user;
}
public String getUser() {
return user;
}
}
最佳答案
for (int i = 0; i < result.size(); i++) {
sr = new SearchResults();
sr.setTitle(result.get(i));
i++;
sr.setUser(result.get(i));
i++;
sr.setHex(result.get(i));
results.add(sr);
}
你在这里盲目地增加i
。这很可能是问题所在。回到问题的根源,您正在解析的数据有时可能不完整或错误解析,因此它并不总是产生您想要的参数数量(即您解析一些期望标题、用户和颜色的内容,但是仅获取标题和用户)。
由于 List
的大小为 62,这表明您在解析时至少错过了 1 个参数(标题、用户或颜色)。如果所有内容都正确解析,您的 List
的大小将为 63。
关于java - Arraylist 索引越界异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11439666/
我最近才开始学习 Clojure,所以很抱歉,如果这有点初级: 有人可以向我解释一下两者之间的区别吗: => (def a (lazy-cat [0]
我有一些看起来像这样的数据: X = [[1,2,3,4],[01010],[-1.6]] y = [[4,2]] 我正在尝试使用 tflearn 在这些数据上训练神经网络。我使用的是 TFlearn
我的代码有问题。 我正在尝试从 .txt 文件中提取 channel 名称。我不明白为什么方法 line.split() 给我返回一个长度为 0 的数组: 有人可以帮助我吗? 这是文件.txt: --
def sigmoid(z): # complete the code z = np.asarray(z) if z.ndim == 0: return(1/(1+np.exp(-z))) e
我在访问 3d 数组内的值时遇到问题。有时它给出正确的值,但有时它给出随机的数值。数组内不存在。 import java.util.*; public class Main { public
我有一段代码,执行时会出现此错误。而且我比较新,我似乎无法解决问题。 错误:2011-09-06 12:31:06.094 ForceGauge[266:707] CoreAnimation:忽略异常
我正在尝试限制 http://www.liftdesignphoto.com/test/ 中的滚动因为它让电梯超出了界限。 有没有办法重新计算位置,使其不越界? (也许使用 %)。 谢谢 最佳答案 假
我正在尝试遍历 6 个“国际象棋”棋子的列表。每轮他们移动一个随机数量,如果他们落在另一个上,他们就会“杀死”它。 问题是,当我的 vector 中的最后一 block 杀死另一 block 时,我收
NumberPicker serviceWheel = (NumberPicker) findViewById(R.id.serviceSelector); serviceWheel.setMaxVa
我正在尝试使用 GridLayout 重现此计算器布局 但这就是我用我尝试过的代码得到的结果。 事实上,在设备上情况会变得更糟,它会削减更多必须跨越两行的最后一个相等按钮。
运行测试脚本时出现“标签越界”错误。将注释值与类数进行比较时,confusion_matrix 函数会抛出错误。在我的例子中,注释值是一个图像(560x560)和 number_of_classes
什么是 OOL(越界)代码?我在 ION 编译器中找到了它,但无法理解发生了什么。 bool CodeGeneratorShared::generateOutOfLineCode() { for
这是我正在研究的有趣的事情。 varray.c: static GLint vertices[] = {25, 25, 100, 325,
我的程序将文件读取到字节数组中,然后尝试从该文件中提取 bmp 图像。问题是我遇到了越界错误。 { public static void main( String[] args ) {
我有一个 UITableView,它由从 XML 提要解析的数据数组填充。我正在努力寻找此错误的原因,并想知道是否有人可以帮助我。该错误不会经常发生。它仅在数组数量很大时发生,例如 10-15 个对象
public class GameEntry { private String name; private int score; public GameEntry(String
我遇到了 Storyboard的问题(至少有点惊讶)。 我有一个 ViewController,它包含一个容器 View 以及各种 ImageView 。自然地,选择的 ImageView 决定了容器
我正在尝试为一些 textfield 设置动画。即在屏幕外开始动画并移动到屏幕中央。但就我而言,动画从中心开始并超出 bounds。当我在 viewWillAppear/viewDidAppear 中
closeTs在struct tic给我一个错误 - tsP=0x66 .我尝试从 oracle 条目中填充它,如果没有,我尝试分配一个值。但我在 fillFields 中访问错误.有人可以给我提示
public class Registration { public static void main(String[] args) { final String MY
我是一名优秀的程序员,十分优秀!