晓呆同学 2020-06-01 11:36 采纳率: 100%
浏览 164
已采纳

哪位大神能帮把这段C语音的代码翻译成Java代码,跪谢!

int getMabBuf(char* fileName, char* mabBuf)
{
    char sBlock[256+1];
    FILE *pfFileI;
    struct stat fbuf;
    if(stat(fileName,&fbuf) < 0)
    {
        return -1;
    }
    if ((pfFileI = fopen(fileName, "r")) == NULL)
    {
        return -2;
    }
    while (!feof(pfFileI))
    {
        memset(sBlock, 0, sizeof(sBlock));
        fread(sBlock, __BLOCKSIZE, 1, pfFileI);
        Do_XOR(mabBuf, sBlock, __BLOCKSIZE);
    }
    fclose(pfFileI);
    return 0;
}

void doXOR( char* deststr , char* source , int strlength )
{
int i = 0;
for( i = 0 ; i < strlength ; i++ )
{
deststr[i] ^= source[i];
}
}


#define __BLOCKSIZE 256

  • 写回答

1条回答 默认 最新

  • qybao 2020-06-01 14:54
    关注

    只是单纯的翻译代码

    public class Sample {
        public static final int __BLOCKSIZE = 256;
        public static int getMabBuf(String fileName, byte []mabBuf) {
            byte []sBlock = new byte[256+1];
            File pfFile = new File(fileName);
            if (! pfFile.exists()) {
                return -1;
            }
            try (FileInputStream fis = new FileInputStream(pfFile);) {
                while ((fis.read(sBlock, 0, __BLOCKSIZE)) != -1) {
                    doXOR(mabBuf, sBlock, __BLOCKSIZE);
                    Arrays.fill(sBlock, (byte)0);
                }
            } catch (Exception e) {
                return -2;
            }
            return 0;
        }
        public static void doXOR( byte []deststr , byte []source , int strlength ) {
            int i = 0;
            for( i = 0 ; i < strlength ; i++ ) {
                deststr[i] ^= source[i];
            }
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀