2

我想向现有文件添加一个属性值对。同时,所有属性都应按字母顺序排列。例如 :

[Info] % property 1
value 1 
[system] % property 2
value 2

我如何添加其他属性,以便所有属性都按字母顺序排序。我能够使用将属性-值对添加到文件末尾, fh = fopen(filename,'a')但我无法按字母顺序对它们进行排序。

到目前为止,我按如下方式尝试了此操作,但使用此操作时,它只会打印新的属性-值对。我想在打印新属性后打印剩余属性。

function [] = myfun(filename ,propName,propvalue)
rfh = fopen(filename,'r');
tname = tempname();
wfh = fopen(tname,'w');
line = fgetl(rfh);

while ischar(line)

    if (line(1) == '[') && (line(end) == ']')
        property = lower(line(2:end-1)) % from ini file
        String2 = property;
        String1 = propName;
        [sat] = sor(String1,String2)% subfunction
        if sat == -1
            fprintf(wfh,'[%s]\r\n%s\r\n',propName,propvalue);
        else
            fprintf(wfh,'%s\r\n',line);
        end
    else
        fprintf(wfh,'%s\r\n',line);
    end
    line = fgetl(rfh);
end
fclose(rfh);
fclose(wfh);
movefile(tname,filename,'f')

function [sat] = sor(String1,String2)
Index = 1;

while Index < length(String1) && Index < length(String2) && String1(Index) == String2(Index)
    Index = Index + 1;
end

% Return the appropriate code
if String1(Index) < String2(Index)
    sat= -1
elseif String1(Index) > String2(Index)
    sat= +1
else % the characters at this position are equal -- the shorter of the two strings should be "less than"
    if length(String1) == length(String2)
        sat = 0
    elseif length(String1) <  length(String2)
        sat = -1
    else
        sat = +1
    end
end
4

2 回答 2

3

这是一个.ini文件吗?您可能想查看 MATLAB File Exchange 中的INIConfig,这是一组用于处理 INI 文件的例程,这些例程排列在一个方便的类中。我没有使用它,但也许它可以满足您的需求。

如果没有,您可以随时:

  1. 读入文件
  2. 逐行循环
  3. 当您发现一行以 开头,[后跟按字母顺序排列的单词晚于您要插入的属性时,请插入您的属性和值
  4. 包括文件的其余部分
  5. 再次将整个文件写回。
于 2013-01-20T21:36:56.607 回答
1

如何将文件读入struct?

function fileData = readFileIntoStruct( fileName )
%
% read [property] value pairs file into struct
% 
fh = fopen( fileName, 'r' ); % read handle
line = fgetl( fh );
while ischar( line )
    % property
    tkn = regexp( line, '\[([^\]+)]\]', 'once', 'tokens' );
    % read next line for value
    val = fgetl( fh );
    fileDate.(tkn{1}) = val;
    line = fgetl( fh ); % keep reading
end
fclose( fh ); % don't forget to close the file at the end.

现在,您将所有数据作为 astruct属性,fieldnames并将值作为field值。

现在您可以简单地通过以下方式更新属性:

function fileData = updateProperty( fileData, propName, newVal )
if isfield( fileData, propName )
    fileData.(propName) = newVal;
else
    warning( 'property %s does not exist - please add it first', propName );
end

您可以添加一个属性:

function fileData = addProperty( fileData, propName, newVal )
if ~isfield( fileData, propName )
    fileData.(propName) = newVal;
else
    warning ( 'property %s already exists, use update to change its value', propName );
end

您可以使用按字母顺序对属性进行排序orderfields

fileData = orderfields( fileData );

您可以struct使用以下方法将回写回文件:

function writeDataToFile( newFileName, fileData )
fopen( newFileName , 'w' ); %write handle
propNames = fieldnames( fileData );
for ii = 1:numel( propNames )
    fprintf( fh, '[%s]\r\n%s\r\n', propNames{ii}, fileData.(propNames{ii}) );
end
fclose( fh ); 

假设:

  1. 属性的名称是合法的 Matlab 字段名称(有关详细信息,请参阅变量命名)。

  2. 每个属性的值始终是一个字符串。

  3. 我没有在这些示例中包含任何错误检查代码(未找到文件、格式​​错误的字符串等)

  4. 我假设输入文件是严格的“[prop] val”对,没有任何额外的注释等。

于 2013-01-21T06:59:57.107 回答