A Java program to modify encoding -


i want compile package, need change encoding "utf-8 without bom". package has hundreds java files, don't want open every file , save them. can write program change file in package? or tools use?

as this post discussed, java source file without bom (byte order mark) indistinguishable source file in plain ascii. being said, convert utf-8 source files utf without bom, can strip off leading bom marker. here link code removes bom mark utf-8 files:

http://www.javapractices.com/topic/topicaction.do?id=257


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -