当前位置: 代码迷 >> 综合 >> Ultra Edit 里如何把16进制代码导出成文本/从文本导入
  详细解决方案

Ultra Edit 里如何把16进制代码导出成文本/从文本导入

热度:40   发布时间:2024-01-11 15:50:19.0
RT,就是按照代码显示区的格式导成文本。能看到代码但导不出来,郁闷啊~ 总不能一行行手工抄。

如果用UE以外的工具也可以,总之要能导出和导入,也就是在代码带和文本间转换。
问题补充:比如说,我在一个TXT里输入“百度知道”。换到UE里就是“B0 D9 B6 C8 D6 AA B5 C0”。
我想要的就是把“百度知道”转成“B0 D9 B6 C8 D6 AA B5 C0”这种格式的文本保存成文本文件,等编辑后再转回来。如改成“B0 D9 B6 C8 D6 AA B7 F1”,转回去就是“百度知否”。
四个字可以手工抄,N行就必须要工具了。
在UE里选中文本后,点击右键,选择Hex Copy selectec View,并粘贴到记事本里即可。

另外,也可用Relace Pioneer2.2直接转换, 这里有具体步骤(英文的):

把文件转换成16进制类似如下的文本文件:
0A 02 1B 18 ...
http://www.mind-pioneer.com/services/conv_view.php?id=279

从0A 02 1B 18... 恢复到原始文件的步骤:
http://www.mind-pioneer.com/services/conv_view.php?id=280

279. How to change a binary file into text file with readable hexidecimal format?

User: editor -- 2008-10-12
Description:
How to change a binary file into text file with readable hexidecimal format?
Input Sample:
binary file
Output Sample:
0A 02 1B 18 ...
...
Answer:
Hint: You need to Download and install "Replace Pioneer" to finish following steps.

1. open Tools->Batch Runner menu
2. click "pick files" button to pick files for processing
3. change "set output filename" to new name like 
4. click "Fast Replace"
5. select "Load template" to "binary file -- convert bytes to readabe hex text"
6. click "Start"

 

 

280. How to change text file with hexidecimal format into original binary file?

User: editor -- 2008-10-13
Description:
How to change text file with hexidecimal format into original binary file?
Input Sample:
0A 1C 20 A8 B1 00 06 ...
Output Sample:
binary file
Answer:
Hint: You need to Download and install "Replace Pioneer" to finish following steps.
1. open Tools->Batch Runner menu
2. click "pick files" button to pick files for processing
3. change "set output filename" to new name like 
4. click "Fast Replace"
5. select "Load template" to "binary file -- convert hex text back to bytes"
6. click "Start"

  相关解决方案