0

我在 erlang 中使用 asn1 模块进行解码。输出就像

{'UL-CCCH-Message',asn1_NOVALUE,
               {rrcConnectionRequest,
                {'RRCConnectionRequest',
                 {'tmsi-and-LAI',
                  {'TMSI-and-LAI-GSM-MAP',
                   [1,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,1,0,1,0,1,1,
                    1,1,0,1,0],
                   {'LAI',
                    {'PLMN-Identity',[2,2,6],[0,1]},
                    [0,1,1,1,1,0,0,1,1,0,0,0,1,1,0,1]}}},
                 terminatingBackgroundCall,noError,
                 {'MeasuredResultsOnRACH',
                  {'MeasuredResultsOnRACH_currentCell',
                   {fdd,
                    {'MeasuredResultsOnRACH_currentCell_modeSpecificInfo_fdd',
                     {'cpich-Ec-N0',39}}}},
                  asn1_NOVALUE},
                 asn1_NOVALUE}}}

如何输出 XML 而不是 erlang 术语?

4

2 回答 2

1

请记住,任何 erlang 术语(不特定于 asn.1 模块)都可以通过如下函数轻松输出为 XML:

to_xml(X) when is_atom(X) ->
    "<atom>" ++ atom_to_list(X) ++ "</atom>"; % might want apostrophes
to_xml(X) when is_integer(X) ->
    "<integer>" ++ io_lib:format("~p", [X]) ++ "</integer>";
to_xml(X) when is_tuple(X) ->
    "<tuple size=" ++ tuple_size(X) ++ ">" ++ % or maybe want size implicit
        lists:foldr(fun(E, L) -> to_xml(E) ++ L end, [], tuple_to_list(X))
        ++ "</tuple>";
to_xml(X) when is_list(X) ->
    "<list>" ++ lists:foldr(fun(E, L) -> to_xml(E) ++ L end, [], X) ++ "</list>";
% etc...
于 2011-01-17T17:50:33.983 回答
0

将 ASN1 转换为 XML 表示可能有两个可用选项:

http://www.research.ibm.com/trl/projects/xml/xss4j/docs/axt-readme.html

http://www.obj-sys.com/webtools/asn2xml.php

于 2014-03-25T05:19:21.633 回答