Source Code : whether the given 32 bit character is a valid XML 1.1 character.
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
whether the given 32 bit character is a valid XML 1.1 character.
public class Utils {
/**
* Tests whether the given 32 bit character is a valid XML 1.1 character.
*/
public static boolean isXML11Character(int c) {
return c >= 1 && c <= 0xd7ff
|| c >= 0xe000 && c <= 0xfffd
|| c >= 0x10000 && c <= 0x10ffff;
}
}
Thank with us