All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.krysalis.barcode4j.tools.MessageUtil Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2008 Jeremias Maerki
 *
 * 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.
 */

/* $Id: MessageUtil.java,v 1.2 2009/02/20 13:07:21 jmaerki Exp $ */

package org.krysalis.barcode4j.tools;

/**
 * Utilities for pre-processing messages.
 */
public class MessageUtil {

    /**
     * Un-escapes escaped Unicode characters in a message. This is used to support characters
     * not encodable in XML, such as the RS or GS characters.
     * @param message the message
     * @return the processed message
     */
    public static String unescapeUnicode(String message) {
       StringBuffer sb = new StringBuffer();
       if (message == null) {
           return null;
       }
       int sz = message.length();
       StringBuffer unicode = new StringBuffer(4);
       boolean hadSlash = false;
       boolean inUnicode = false;
       for (int i = 0; i < sz; i++) {
           char ch = message.charAt(i);
           if (inUnicode) {
               unicode.append(ch);
               if (unicode.length() == 4) {
                   try {
                       int value = Integer.parseInt(unicode.toString(), 16);
                       sb.append((char)value);
                       unicode.setLength(0);
                       inUnicode = false;
                       hadSlash = false;
                   } catch (NumberFormatException nfe) {
                       throw new java.lang.IllegalArgumentException(
                               "Unable to parse Unicode value: " + unicode);
                   }
               }
               continue;
           }
           if (hadSlash) {
               hadSlash = false;
               if (ch == 'u') {
                   inUnicode = true;
               } else {
                   sb.append(ch);
               }
               continue;
           } else if (ch == '\\') {
               hadSlash = true;
               continue;
           }
           sb.append(ch);
       }
       return sb.toString();
   }

    /**
     * Filters non-printable ASCII characters (0-31 and 127) from a string with spaces and
     * returns that. Please note that non-printable characters outside the ASCII character
     * set are not touched by this method.
     * @param text the text to be filtered.
     * @return the filtered text
     */
    public static String filterNonPrintableCharacters(String text) {
        int len = text.length();
        StringBuffer sb = new StringBuffer(len);
        for (int i = 0; i < len; i++) {
            final char ch = text.charAt(i);
            if (ch < 32 || ch == 127) {
                sb.append(' '); //Replace non-printables with a space
            } else {
                sb.append(ch);
            }
        }
        return sb.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy