所以,这是我试图在一个帖子中解释的文件
% $- background:#000000 % Hello, World. It is currently a test of the features of YeML. % $- background:#ffffff % $+ id:test type:container
以下是代码:
new Thread() {
StringBuilder text = new StringBuilder();
@Override
public void run() {
try
{
String str = "";
URL url = new URL("http://example.com/" + mes + "/" + mes + ".meb");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
while ((str = in.readLine()) != null) {
text.append(str);
}
in.close();
} catch (MalformedURLException e1)
{
}
catch (IOException e)
{
}
if(message.contains(".meb")) {
String str[] = text.toString().split("%");
for (final String l : str) {
String code[] = l.split(" ");
if (l.toString().contains("$-")) {
for(String p : code)
{
if(p.toString().contains("background"))
{
final String set[] = p.toString().split(":");
runOnUiThread(new Runnable() {
@Override
public void run() {
(findViewById(R.id.body)).setBackgroundColor(Color.parseColor(set[1]));
}
});
}
}
}
else if(l.toString().contains("$+"))
{
String[] g = code[1].split(":");
String[] c = code[2].split(":");
final String[] test = {g[1], "100"};
globvar.add(test);
if(test[1].toString().equals("container")) {
runOnUiThread(new Runnable() {
@Override
public void run() {
final LinearLayout element = new LinearLayout(getApplicationContext());
element.setId(Integer.parseInt(test[1]));
element.setBackgroundColor(Color.parseColor("#000000"));
((LinearLayout) findViewById(R.id.linearo)).addView(element);
}
});
}
}
else
{
runOnUiThread(new Runnable() {
@Override
public void run() {
final TextView tv = new TextView(getApplicationContext());
tv.setTextColor(Color.parseColor("#000000"));
tv.setText(l);
((LinearLayout) findViewById(R.id.linearo)).addView(tv);
}
});
}
}
}
else {
if(message == null) {
runOnUiThread(new Runnable() {
@Override
public void run() {
}
});
}
}
}
}.start();
我知道它出现在最后的部分String [] test = {g [1],“100”};因为这里是logcat:
08-01 17:05:36. 186 20045 20065 E AndroidRuntime: FATAL EXCEPTION: Thread-1111
08-01 17:05:36. 186 20045 20065 E AndroidRuntime: java.lang.ArrayIndexOutOfBoundsException: length=1 ; index=1
08-01 17:05:36. 186 20045 20065 E AndroidRuntime: at example.yemeb.List$1.run(List.java:86)
前面给出的代码行是在第86行。我不知道为什么它会是一个数组异常,因为字符串数组应该包含以下内容:
id:test - > id测试
应该有一个索引0的数组,它是id,数组索引是1,这是test。问题是什么?谢谢你的帮助。
答案 0 :(得分:1)
我觉得问题是它说数组长度是1而索引是1 ..但索引应该是0? java索引从0开始。
尝试在调试器中检查数组长度或输出logcat。
答案 1 :(得分:0)
Logcat在这里非常清楚。它告诉你,你正试图访问g[1]
,但g []``只有一个元素。所以,你只有g[0]
。
在您的代码中,您永远不会访问任何[0]
索引。也许您认为java中的数组以元素1
开头。 在java中,数组从元素0
开始。