`

java String to byte[]

    博客分类:
  • java
阅读更多

package mobile;

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Vector;

/**
 *
 * @author zwg
 */
public class CBase64 {

    private static final char[] legalChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
            .toCharArray();

    private static Vector nodes = new Vector();

    /**
     * Split string into multiple strings
     * 
     * @param original
     *            Original string
     * @param separator
     *            Separator string in original string
     * @return Splitted string array
     */
    public static String[] split(String original, String separator) {
        nodes.removeAllElements();
        // Parse nodes into vector
        int index = original.indexOf(separator);
        while (index >= 0) {
            nodes.addElement(original.substring(0, index));
            original = original.substring(index + separator.length());
            index = original.indexOf(separator);
        }
        // Get the last node
        nodes.addElement(original);

        // Create splitted string array
        String[] result = new String[nodes.size()];
        if (nodes.size() > 0) {
            for (int loop = 0; loop < nodes.size(); loop++)
                result[loop] = (String) nodes.elementAt(loop);
        }
        return result;
    }

    /*
     * Replace all instances of a String in a String. @param s String to alter.
     * @param f String to look for. @param r String to replace it with, or null
     * to just remove it.
     */
    public static String replace(String s, String f, String r) {
        if (s == null)
            return s;
        if (f == null)
            return s;
        if (r == null)
            r = "";

        int index01 = s.indexOf(f);
        while (index01 != -1) {
            s = s.substring(0, index01) + r + s.substring(index01 + f.length());
            index01 += r.length();
            index01 = s.indexOf(f, index01);
        }
        return s;
    }

    /**
     * Method removes HTML tags from given string.
     * 
     * @param text
     *            Input parameter containing HTML tags (eg. <b>cat</b>)
     * @return String without HTML tags (eg. cat)
     */
    public static String removeHtml(String text) {
        try {
            int idx = text.indexOf("<");
            if (idx == -1)
                return text;

            String plainText = "";
            String htmlText = text;
            int htmlStartIndex = htmlText.indexOf("<", 0);
            if (htmlStartIndex == -1) {
                return text;
            }
            while (htmlStartIndex >= 0) {
                plainText += htmlText.substring(0, htmlStartIndex);
                int htmlEndIndex = htmlText.indexOf(">", htmlStartIndex);
                htmlText = htmlText.substring(htmlEndIndex + 1);
                htmlStartIndex = htmlText.indexOf("<", 0);
            }
            plainText = plainText.trim();
            return plainText;
        } catch (Exception e) {
            System.err.println("Error while removing HTML: " + e.toString());
            return text;
        }
    }

    /** Base64 encode the given data */
    public static String encode(byte[] data) {
        int start = 0;
        int len = data.length;
        StringBuffer buf = new StringBuffer(data.length * 3 / 2);

        int end = len - 3;
        int i = start;
        int n = 0;

        while (i <= end) {
            int d = ((((int) data[i]) & 0x0ff) << 16)
                    | ((((int) data[i + 1]) & 0x0ff) << 8)
                    | (((int) data[i + 2]) & 0x0ff);

            buf.append(legalChars[(d >> 18) & 63]);
            buf.append(legalChars[(d >> 12) & 63]);
            buf.append(legalChars[(d >> 6) & 63]);
            buf.append(legalChars[d & 63]);

            i += 3;

            if (n++ >= 14) {
                n = 0;
                buf.append(" ");
            }
        }

        if (i == start + len - 2) {
            int d = ((((int) data[i]) & 0x0ff) << 16)
                    | ((((int) data[i + 1]) & 255) << 8);

            buf.append(legalChars[(d >> 18) & 63]);
            buf.append(legalChars[(d >> 12) & 63]);
            buf.append(legalChars[(d >> 6) & 63]);
            buf.append("=");
        } else if (i == start + len - 1) {
            int d = (((int) data[i]) & 0x0ff) << 16;

            buf.append(legalChars[(d >> 18) & 63]);
            buf.append(legalChars[(d >> 12) & 63]);
            buf.append("==");
        }

        return buf.toString();
    }

    private static int decode(char c) {
        if (c >= 'A' && c <= 'Z')
            return ((int) c) - 65;
        else if (c >= 'a' && c <= 'z')
            return ((int) c) - 97 + 26;
        else if (c >= '0' && c <= '9')
            return ((int) c) - 48 + 26 + 26;
        else
            switch (c) {
            case '+':
                return 62;
            case '/':
                return 63;
            case '=':
                return 0;
            default:
                throw new RuntimeException("unexpected code: " + c);
            }
    }

    /**
     * Decodes the given Base64 encoded String to a new byte array. The byte
     * array holding the decoded data is returned.
     */

    public static byte[] decode(String s) {

        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        try {
            decode(s, bos);
        } catch (IOException e) {
            throw new RuntimeException();
        }
        byte[] decodedBytes = bos.toByteArray();
        try {
            bos.close();
            bos = null;
        } catch (IOException ex) {
            System.err.println("Error while decoding BASE64: " + ex.toString());
        }
        return decodedBytes;
    }

    private static void decode(String s, OutputStream os) throws IOException {
        int i = 0;

        int len = s.length();

        while (true) {
            while (i < len && s.charAt(i) <= ' ')
                i++;

            if (i == len)
                break;

            int tri = (decode(s.charAt(i)) << 18)
                    + (decode(s.charAt(i + 1)) << 12)
                    + (decode(s.charAt(i + 2)) << 6)
                    + (decode(s.charAt(i + 3)));

            os.write((tri >> 16) & 255);
            if (s.charAt(i + 2) == '=')
                break;
            os.write((tri >> 8) & 255);
            if (s.charAt(i + 3) == '=')
                break;
            os.write(tri & 255);

            i += 4;
        }
    }
}


分享到:
评论
1 楼 hugang357 2011-09-17  

相关推荐

    Java String与Byte类型转换

    在Java编程中,String对象和Byte类型的转换是常见的操作,特别是在网络编程中,因为网络通信通常涉及字节流的处理。下面将详细讲解Java中如何进行这两种类型之间的转换,并探讨其在网络编程中的应用。 首先,让我们...

    java中String_十六进制String_byte[]之间相互转换

    public static byte[] stringToBytes(String str) { return str.getBytes(); } ``` 该方法简单直接,但需要注意的是,默认情况下,`getBytes()`使用平台默认的字符集编码,如果涉及到不同环境下的数据传输,则需要...

    Android byte[] 和 String互相转换

    public static byte[] hexToByte(String str) { return str.getBytes(StandardCharsets.UTF_8); } ``` ### 三、注意事项 1. **字符编码**:在进行转换时,一定要清楚源数据的字符编码,以避免乱码问题。常见的...

    String(含Hex)与Byte数组互相转换[代码]

    在Java或类似的编程语言中,我们经常会遇到需要将字符串(String)与字节数组(Byte[])以及十六进制表示的字符串(Hex)进行相互转换的情况。这些转换在处理网络通信、文件存储、加密解密等领域尤为关键。下面我们...

    Java中byte[]、String、Hex字符串等转换的方法

    Java中byte[]、String、Hex字符串等转换的方法 Java中byte[]、String、Hex字符串等转换的方法是非常重要的知识点,这些转换方法在实际开发中经常被使用。下面将详细介绍这些转换方法。 byte[]和byte的合并 在Java...

    转换Image数据为byte数组

    public static byte[] imageToBytes(Image image, String format) { BufferedImage bImage = new BufferedImage(image.getWidth(null), image.getHeight(null), BufferedImage.TYPE_INT_ARGB); Graphics bg = ...

    okio-1.6.0.jar

    网络请求时需要依赖okio.jar这个包,不然出现:Exception in thread "main" java.lang.NoClassDefFoundError: okio/ByteString

    java byte数组与int,long,short,byte的转换实现方法

    public static String byteToHex(byte b) { int i = b & 0xFF; return Integer.toHexString(i); } ``` 这里,先用`& 0xFF`将`byte`转换为正数,然后调用`Integer.toHexString()`生成十六进制字符串。 接下来,...

    byte与各类型之间的转化

    public static byte[] stringToByte(String str) { return str.getBytes(StandardCharsets.UTF_8); } ``` - **byte[]到String的转换** - 反之,可以使用`new String(byte[], Charset)`构造函数将字节数组转换...

    Java Base64支持encodeBase64String和decodeBase64String的包

    Base64工具类包,一般用于使用AES加密解密类中的使用工具类中需要引用的jar包

    string_byte_sink.rar_The Sink

    6. **源代码分析**:压缩包中的`string_byte_sink.c`文件可能是C语言版本的实现,虽然Guava是Java库,但这个文件可能是对ByteSink概念的一种移植或类似实现。通过阅读这个源代码,我们可以了解如何在C语言环境中实现...

    byte[]转化成其他数据类型

    public static byte[] stringToBytes(String s, int length) { while (s.getBytes().length ) { s += ""; // 填充字符串长度 } return s.getBytes(); } ``` ### byte[] 转换回 String 将`byte[]`转换回`String...

    andriod byte 转int,string,数组,互转

    byte转化工具类,可以实现byte转int,数组,string,小端取高位,低位等

    String Image之间相互转化

    public static BufferedImage stringToImage(String base64String) { byte[] imageBytes = Base64.getDecoder().decode(base64String); InputStream inputStream = new ByteArrayInputStream(imageBytes); ...

    学习文档_JAVA中Integer和Byte转换.doc

    byte[] unsignedInteger4ToByte(long value) { String hexString = Long.toHexString(value); while (hexString.length() ) { hexString = "0" + hexString; } byte[] bytes = hexStringToBytes(hexString); ...

    Introduction to java programming

    - `byte`: 占用8位,用于存储小范围的整数。 - `short`: 占用16位,用于存储中等范围的整数。 - `int`: 占用32位,是Java中最常用的整数类型。 - `long`: 占用64位,用于存储大范围的整数。 - `float`: 占用32位,...

    浮点数转四字节数HexToByte

    浮点数转换为四字节数HexToByte是计算机编程中的一个重要操作,特别是在处理二进制数据、网络传输或存储时。浮点数是一种用于表示数值的格式,它包括正负号、指数和尾数部分,能够精确表示大部分实数。在计算机内部...

    JavaString类型转换[文].pdf

    如代码`toInteger(byte[] b)`所示,通过累乘256并根据字节值的正负进行调整来还原整数。 7. 短整数与字节数组之间的转换 对于`short`类型,由于它是两个字节的,所以只需修改上述整数转换的代码,以适应其长度即可...

    浅谈java String不可变的好处

    浅谈java String不可变的好处 java String不可变的好处是java语言中一个非常重要的特性,它对程序的开发和维护产生了深远的影响。在本文中,我们将详细介绍java String不可变的好处,并通过示例代码对其进行解释。 ...

    android GBK转换为String

    String unicodeStr = new String(gbkBytes, "GBK"); ``` 2. **Unicode转GBK(字符串)**: - 反之,如果已有Unicode字符串,需要编码成GBK,可以使用`CharsetEncoder`: ```java String unicodeStr = ...; // ...

Global site tag (gtag.js) - Google Analytics