本文介绍了我如何修改-encoding参数在Android Ant构建系统的javac的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

道歉,如果这是一个愚蠢的问题 - 我是一个Android和Ant新手

Apologies if this is a stupid question - I'm an Android and Ant newbie.

我有UTF8恩,我需要编译的Andr​​oid Ant构建系统codeD的源文件。默认情况下,编码设置为ASCII。我会非常感激的指针无论我需要做的,让构建系统知道,我的文件是UTF8。

I have utf8 encoded source files that I need to compile with the Android Ant build system. By default, the encoding is set to ascii. I'd be very grateful for a pointer to whatever I need to do to let the build system know that my files are utf8.

顺便说一下,它工作正常,如果我建立在Eclipse,但我需要建立在命令行。

Incidentally, it works fine if I build in Eclipse, but I need to build from the command line.

谢谢!

推荐答案

您应该添加 java.encoding = UTF-8 build.properties

这篇关于我如何修改-encoding参数在Android Ant构建系统的javac的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 14:16