MugJerry 2016-09-01 05:38 采纳率: 100%
浏览 1079
已采纳

C#怎么解析 java转的16进制图片字符串

如题 我现在有个由java转的16进制图片字符串,我要用C#的方法将其转换,
然后保存图片文件,有哪位大神知道方法,求告知

或者将下面java解析、保存图片的代码转换成可运行的C#代码

public void saveToImgFile(String src, String output)

{

if (src == null || src.length() == 0)

{

return;

}

try

{

src=src.replaceAll("(00){1,}$", "");
FileOutputStream out = new FileOutputStream(new File(output));

byte[] bytes = src.getBytes();

for (int i = 0; i < bytes.length; i += 2)

{

out.write(charToInt(bytes[i]) * 16 + charToInt(bytes[i + 1]));

}

out.close();

}

catch (Exception e)

{

e.printStackTrace();

}

}

private int charToInt(byte ch)  
{  
    int val = 0;  
    if (ch >= 0x30 && ch <= 0x39)  
    {  
        val = ch - 0x30;  
    }  
    else if (ch >= 0x41 && ch <= 0x46)  
    {  
        val = ch - 0x41 + 10;  
    }  
    return val;  
}  
  • 写回答

3条回答 默认 最新

  • weixin_36050410 2016-09-04 14:30
    关注

    ///
    /// 字符串转16进制字节数组
    ///
    ///
    ///
    private static byte[] strToToHexByte(string hexString)
    {
    hexString = hexString.Replace(" ", "");
    if ((hexString.Length % 2) != 0)
    hexString += " ";
    byte[] returnBytes = new byte[hexString.Length / 2];
    for (int i = 0; i < returnBytes.Length; i++)
    returnBytes[i] = Convert.ToByte(hexString.Substring(i * 2, 2), 16);
    return returnBytes;
    }

    ///
    /// 字节数组转16进制字符串
    ///
    ///
    ///
    public static string byteToHexStr(byte[] bytes)
    {
    string returnStr = "";
    if (bytes != null)
    {
    for (int i = 0; i < bytes.Length; i++)
    {
    returnStr += bytes[i].ToString("X2");
    }
    }
    return returnStr;
    }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题