在Android studio里编写纯Java代码
我在Android studio里写Android程序时,总会碰到陌生的Java类,想多了解些就需要写一些Demo来观察类的作用,倒也可以在Android程序里运行打log,不过后来发现写Java纯代码也是可以的。
步骤:
点击File选项卡->New->New Module->Java Library
点击Next后,如下图,默认就可以了
Finish后,就构造了如下库模块
打开MyClass写点Demo
运行结果有乱码
解决如下:
在java库模块里的build.gradle中加入
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}