如何打印出UNIX中的Hexdump函数之类的地址

时间:2011-07-06 03:44:25

标签: c hex hexdump

我有这个任务,我想从unix模拟hexdump函数。我有我的程序将文件转储到十六进制,但我在打印偏移和可打印字符时遇到问题。

这是我的代码:

/*performs a hex and an octal dump of a file*/

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define LINESIZE 512

void hexdump(FILE *fp);
void octaldump(FILE *fp);

int main(int argc, char * argv[])
{
    FILE *fp;

   if((fp = fopen(argv[1], "rb+")) == '\0')
   {
    perror("fopen");
    return 0;
   }

   hexdump(fp);

   return 0;
}

void hexdump(FILE *fp)
{
   char temp [LINESIZE];
   size_t i = 0;
   size_t linecount = 1;
   long int address = 0;


   while(fscanf(fp," %[^\n] ", temp) == 1)
   {
     printf("%5d", address);

     for(i = 0; i < strlen(temp); i++)
     {
        printf("%02x ", temp[i]);

        if(linecount == 16)
        {
            printf("\n");
            linecount = 0;          
        }
        linecount++;
     }
     printf(" | ");

     for(i = 0; i < strlen(temp); i++)
     {
         if(temp[i] < 32)
         {
            printf(".");
         }
         else
         {
             printf("%c", temp[i]);
         }
     }
     printf("\n");
    }
}

正如我上面所说,我的程序假设打印偏移然后用0填充文件的十六进制值,然后是文件的可打印字符,如此。

0000000 7f 2a 34 f3 21 00 00 00 00 00 00 00 00 00 00 00 | test file

我设法打印出可打印的字符,但它们出现在十六进制部分之后。因此,如果一行hexcode延伸到下一行,它会在下一行打印可打印字符。

例如:

2a 3b 4d 3e 5f
12 43 23 43 | asfdg df

如何让它打印出一行十六进制字符后出现的任何字符?

PS:出于某种原因,我的程序由于某种原因没有填0。

EDIT1:我得到了偏移部分,我只是继续在我的地址变量中添加16并继续打印

1 个答案:

答案 0 :(得分:0)

由于这是家庭作业,我只会给你一些关于如何解决问题的指示。我会尽可能地模糊,以免干扰你的学习。

首先,如果您正在编写十六进制转储程序,请不要使用fscanf,而是使用freadscanf函数系列用于文本,十六进制转储器通常与二进制数据一起使用。

如果您使用fread并一次读取足够的字节来填充一行输出,那么您可以使用两个for循环生成所需的输出(一个用于十六进制,一个用于字符)然后是一个换行符。

就零填充问题而言,请阅读the printf man page,您的"%5d"格式字符串需要多一点。