Java tutorial
//package com.java2s; /* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ public class Main { private static final int NULL_CHAR = 0x00; public static CharSequence ZawGyiDrawFix(CharSequence input) { return ZawGyiDrawFix(input, 0xEA00); } public static CharSequence ZawGyiDrawFix(CharSequence input, int fixCode) { if (fixCode == 0x0) return input; String output = input.toString(); int index = 0; char[] chArray = new char[output.length()]; for (int i = 0; i < output.length(); i++) { int ch = (int) output.charAt(i); if ((ch != NULL_CHAR) && (isMyChar(ch))) { chArray[index++] = (char) (ch + fixCode); // 0xEA00 } else { chArray[index++] = (char) ch; } } return String.valueOf(chArray); } public static boolean isMyChar(int code) { return (code >= 0x1000 && code <= 0x109F) || (code >= 0xAA60 && code <= 0xAA7B); } public static boolean isMyChar(int[] codes) { if (codes == null) return false; boolean isMyChar = false; for (int i = 0; i < codes.length; i++) { if (isMyChar(codes[i])) { isMyChar = true; break; } } return isMyChar; } public static boolean isMyChar(CharSequence label) { if (label == null) return false; boolean isMyChar = false; for (int i = 0; i < label.length(); i++) { if (isMyChar(label.charAt(i))) { isMyChar = true; break; } } return isMyChar; } }