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 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛