当前位置: 编程技术>移动开发
本页文章导读:
▪xxx is not translated in yyy, zzz 的解决办法 xxx is not translated in yyy, zzz 的解决方法
在Android SDK Tool r19之后, Export的时候遇到xxx is not translated in yyy, zzz的问题。
例如说"auto_exit" is not translated in zh, zh_CN.
这是因为Android SDK Tool 將 ANDROID_LINT_C.........
▪ libgdx引擎中particle-editor.jnlp无法在64位jdk下使用的解决办法 libgdx引擎中particle-editor.jnlp无法在64位jdk下使用的解决方法
libgdx是android下的一个游戏引擎
----------------------------
今天开发的使用要用到particle-editor.jnlp这个东东是libgdx的一个粒子效.........
▪ java 输入跟输出流 java 输入和输出流
package com.amaker.file;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOExcep.........
[1]xxx is not translated in yyy, zzz 的解决办法
来源: 互联网 发布时间: 2014-02-18
xxx is not translated in yyy, zzz 的解决方法
在Android SDK Tool r19之后, Export的时候遇到xxx is not translated in yyy, zzz的问题。
例如说"auto_exit" is not translated in zh, zh_CN.
这是因为Android SDK Tool 將 ANDROID_LINT_COMPLETE_REGIONS 改为了需要检查。
临时解决方法:
Eclipse > Preference > Android > Lint Error Checking的Correctness: Messages > MissingTranslate
将 Severity 从 Fetal 改为 Warming
[2] libgdx引擎中particle-editor.jnlp无法在64位jdk下使用的解决办法
来源: 互联网 发布时间: 2014-02-18
libgdx引擎中particle-editor.jnlp无法在64位jdk下使用的解决方法
libgdx是android下的一个游戏引擎
----------------------------
今天开发的使用要用到particle-editor.jnlp这个东东是libgdx的一个粒子效果脚本编辑器。但是我在64位jdk下无法打开。很奇怪……难道要重新装32位的jdk……那不是很麻烦。
然后……谷歌……百度……不行
到官网……终于找到解决方法了……
到svn中的libgdx_tags\0.9.3\gdx\libs\windows64下找到一个gdx64.dll的文件,改名gdx-64.dll然后放到system32下面,OK成功运行……
------------------------------------------------------
接下来继续……
怕很多人找不到,我就传了个上来
[3] java 输入跟输出流
来源: 互联网 发布时间: 2014-02-18
java 输入和输出流
package com.amaker.file; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.OutputStream; import java.io.PrintStream; import java.io.Reader; import java.io.Serializable; import java.io.Writer; public class IODemo { public static void main(String[] args) { ReaderDemo01(); } public static void OutputStreamDemo01(){ File file = new File("D:" + File.separator + "test.txt"); // 指定要操作的文件 OutputStream out = null; // 定义字节输出流对象 try { out = new FileOutputStream(file, true); // 实例化操作的父类对象,可以追加内容 } catch (FileNotFoundException e) { e.printStackTrace(); } String info = "Hello World!!!\r\n";// 要打印的信息 byte b[] = info.getBytes(); // 将字符串变为字节数组 try { out.write(b);// 输出内容 } catch (IOException e) { e.printStackTrace(); } try { out.close(); // 关闭 } catch (IOException e) { e.printStackTrace(); } } public static void InputStreamDemo01(){ File file = new File("D:" + File.separator + "test.txt");// 要读取的文件路径 InputStream input = null; // 字节输入流 try { input = new FileInputStream(file); } catch (FileNotFoundException e) { e.printStackTrace(); } byte b[] = new byte[1024];// 开辟byte数组空间,读取内容 int len = 0; try { int temp = 0; // 接收每次读取的内容 while ((temp = input.read()) != -1) {// 如果不为-1表示没有读到底 b[len] = (byte) temp; // int --> byte len++; } } catch (IOException e) { e.printStackTrace(); } try { input.close(); } catch (IOException e) { e.printStackTrace(); } System.out.println(new String(b, 0, len)); } //<=========================================================================================> //使用Writer完成文件内容的输出 public static void WriterDemo01(){ File file = new File("D:" + File.separator + "test.txt"); // 指定要操作的文件 Writer out = null; // 定义字节输出流对象 try { out = new FileWriter(file); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } // 实例化操作的父类对象 String info = "Hello World!!!";// 要打印的信息 try { out.write(info);// 输出内容 } catch (IOException e) { e.printStackTrace(); } try { out.close();// 关闭 } catch (IOException e) { e.printStackTrace(); } } //字符输入流:Reader public static void ReaderDemo01(){ File file = new File("D:" + File.separator + "test.txt");// 要读取的文件路径 Reader input = null; // 字节输入流 try { input = new FileReader(file); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } char b[] = new char[1024];// 开辟char数组空间,读取内容 int len; try { len = input.read(b);// 读取 input.close(); System.out.println(new String(b, 0, len)); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } /** * 字节流和字符流的区别: * 字节流没有使用到缓冲区,而是直接操作输出的 * 字符流使用到了缓冲区,是通过缓冲区操作输出的。 * 明显使用字节流操作会方便一些,例如:图片、电影都是字节保存的 */ } //打印流:PrintStream(重点) //开发中输出数据的时候不要再直接使用OutputStream,而都使用PrintStream类。因为输出方便 public static void PrintStreamDemo01(){ File file = new File("D:" + File.separator + "temp.txt"); OutputStream output; try { output = new FileOutputStream(file); PrintStream out = new PrintStream(output); out.print("hello"); out.print(" world "); out.println("!!!"); out.print("1 X 1 = " + (1 * 1)); out.println("\n输出完毕"); out.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } } //<============================================================================> /** * 对象序列化: * 一、对象序列化的时候,要被序列化对象所在的类必须实现java.io.Serializable接口 * 二、此接口也属于标识接口,表示可以被序列化 * 三、如果现在对象中的某个属性不希望被序列化,则此时就可以使用transient关键字进行声明,例如: * private transient String name;则在进行反序列化操作的时候,所有内容的返回值都是默认值。 */ public static void ObjectOutputStreamDemo (){ ObjectOutputStream oos; try { oos = new ObjectOutputStream(new FileOutputStream( new File("D:" + File.separator + "person.ser"))); //Person per = new Person("张三", 30); //oos.writeObject(per);// 输出 oos.close();// 关闭 } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } //进行反序列化操作:ObjectInputStream //此时已经将被序列化的内容读取进来了,实际上序列化序列的只是每个类中的属性,因为各个对象只能靠属性区分。 public static void ObjectInputStreamDemo(){ try { ObjectInputStream oos = new ObjectInputStream(new FileInputStream( new File("D:" + File.separator + "person.ser"))); //Person p = (Person)oos.readObject() ; //System.out.println(p); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } //<====================================================================================> /** * 序列化一组对象 */ /*Person per[] = { new Person("张三", 30), new Person("李四", 35), new Person("王五", 50) }; ser(per); // 序列化一组对象 Person p[] = (Person[]) dser(); // 反序列化 for (int x = 0; x < p.length; x++) { System.out.println(p[x]) ; }*/ public static void ser(Object obj) throws Exception { // 所有异常抛出 ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream( new File("D:" + File.separator + "person.ser"))); oos.writeObject(obj);// 输出 oos.close();// 关闭 } public static Object dser() throws Exception { // 所有异常抛出 ObjectInputStream oos = new ObjectInputStream(new FileInputStream( new File("D:" + File.separator + "person.ser"))); Object obj = oos.readObject(); return obj; } }
最新技术文章: