二进制fi中的Python搜索与替换

2024-06-14 22:19:58 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试搜索并替换此pdf格式文件(header.fdf,我假定它被视为二进制文件)中的一些文本(例如“Smith,John”):

'%FDF-1.2\n%\xe2\xe3\xcf\xd3\n1 0 obj\n<</FDF<</Fields[<</V(M)/T(PatientSexLabel)>><</V(24-09-1956  53)/T(PatientDateOfBirth)>><</V(Fisher)/T(PatientLastNameLabel)>><</V(CNSL)/T(PatientConsultant)>><</V(28-01-2010 18:13)/T(PatientAdmission)>><</V(134 Field Street\\rBlackburn BB1 1BB)/T(PatientAddressLabel)>><</V(Smith, John)/T(PatientName)>><</V(24-09-1956)/T(PatientDobLabel)>><</V(0123456)/T(PatientRxr)>><</V(01234567891011)/T(PatientNhsLabel)>><</V(John)/T(PatientFirstNameLabel)>><</V(0123456)/T(PatientRxrLabel)>>]>>>>\nendobj\ntrailer\n<</Root 1 0 R>>\n%%EOF\n'

之后

f=open("header.fdf","rb")
s=f.read()
f.close()
s=s.replace(b'PatientName',name)

出现以下错误:

Traceback (most recent call last):
  File "/home/aj/Inkscape/Med/GAD/gad.py", line 56, in <module>
    s=s.replace(b'PatientName',name)
TypeError: expected an object with the buffer interface

如何才能做到最好?


Tags: 文件name文本pdf二进制johnreplaceheader
2条回答

您一定在使用Python3.X。您没有在示例中定义“name”,但这是问题所在。可能您将其定义为Unicode字符串:

name = 'blah'

它也需要是一个bytes对象:

name = b'blah'

这是有效的:

Python 3.1.2 (r312:79149, Mar 21 2010, 00:41:52) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> f = open('file.txt','rb')
>>> s = f.read()
>>> f.close()
>>> s
b'Test File\r\n'
>>> name = b'Replacement'
>>> s=s.replace(b'File',name)
>>> s
b'Test Replacement\r\n'

bytes对象中,要替换的参数必须同时是bytes对象。

f=open("header.fdf","rb")
s=str(f.read())
f.close()
s=s.replace(b'PatientName',name)

或者

f=open("header.fdf","rb")
s=f.read()
f.close()
s=s.replace(b'PatientName',bytes(name))

可能是后者,因为我认为您无论如何都不能在这种类型的替换中使用unicode名称

相关问题 更多 >