我正在尝试在Android上使用ANTLR,我发现了这个: ANTLR and Android
下载AntlrJavaRuntime后我不知道该怎么做,我应该这样做:
1. lunch the appropriate target
2. make AntlrJavaRuntime
3. verify that AntlrJavaRuntime.xml was placed in /system/etc/permissions and
4. AntlrJavaRuntime.jar was placed in /system/framework
5. after this, you can run a normal make
首先,第1步甚至意味着什么?
其次,当我尝试做:make AntlrJavaRuntime我收到以下错误:
~/AntlrJavaRuntime$ make AntlrJavaRuntime
make: Nothing to be done for `AntlrJavaRuntime'.
很难找到有关这方面的文档,所以我们非常感谢任何帮助(或者是如何让ANTLR为Android项目做好准备的明确示例)。
答案 0 :(得分:21)
好吧,我只是用一个“普通”的ANTLR版本做了一点测试,一切都很顺利。
这就是我的所作所为:
使用名为AndAbac
的程序包和名为bk.andabac
的活动创建名为AndAbac
(Android-Abacus)的新项目。
在系统的任何位置创建名为Exp.g
(解释here)的语法文件,并在其中粘贴以下内容:
grammar Exp;
@parser::header {
package bk.andabac;
}
@lexer::header {
package bk.andabac;
}
eval returns [double value]
: exp=additionExp {$value = $exp.value;}
;
additionExp returns [double value]
: m1=multiplyExp {$value = $m1.value;}
( '+' m2=multiplyExp {$value += $m2.value;}
| '-' m2=multiplyExp {$value -= $m2.value;}
)*
;
multiplyExp returns [double value]
: a1=atomExp {$value = $a1.value;}
( '*' a2=atomExp {$value *= $a2.value;}
| '/' a2=atomExp {$value /= $a2.value;}
)*
;
atomExp returns [double value]
: n=Number {$value = Double.parseDouble($n.text);}
| '(' exp=additionExp ')' {$value = $exp.value;}
;
Number
: ('0'..'9')+ ('.' ('0'..'9')+)?
;
WS
: (' ' | '\t' | '\r'| '\n') {$channel=HIDDEN;}
;
在此处下载ANTLR:http://www.antlr3.org/download/antlr-3.3-complete.jar并将其放在与Exp.g
文件相同的目录中。生成词法分析器和解析器(说明here)并将生成的.java
文件复制到Android项目中的以下文件夹:src/bk/andabac
。还要将此ANTLR jar放到Android项目的类路径中。
将以下内容粘贴到res/layout/main.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText
android:id="@+id/input_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="5 * (8 + 2)"
/>
<Button
android:id="@+id/parse_button"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="eval" />
<TextView
android:id="@+id/output_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""
/>
</LinearLayout>
以及src/bk/andabac/AndAbac.java
中的以下内容:
package bk.andabac;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import org.antlr.runtime.ANTLRStringStream;
import org.antlr.runtime.CommonTokenStream;
import org.antlr.runtime.RecognitionException;
public class AndAbac extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button button = (Button)findViewById(R.id.parse_button);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
EditText in = (EditText)findViewById(R.id.input_text);
TextView out = (TextView)findViewById(R.id.output_text);
String source = in.getText().toString();
ExpLexer lexer = new ExpLexer(new ANTLRStringStream(source));
ExpParser parser = new ExpParser(new CommonTokenStream(lexer));
try {
out.setText(source + " = " + parser.eval());
}
catch (RecognitionException e) {
out.setText("Oops: " + e.getMessage());
}
}
});
}
}
在模拟器中运行项目,或创建一个APK文件并在Android设备上安装(我测试了两个,两者都有效)。按 eval 按钮后,您将看到以下内容:
答案 1 :(得分:2)
这个答案可能有点晚了,但无论如何......
我是Antlr Port的作者。这些源代码用于在android源代码中使用。但是,只需将源代码包含在您的andriod项目中就可以解决您的问题。
我应该提到构建指令仅在将Antlr添加到Android OS源代码时才会生效。
-Earlence