Открыть файл XML в окнах с применением таблицы стилей без редактирования XML?

307
Scott Beeson

Я ищу способ просмотра файла XML с применением таблицы стилей XSL без необходимости изменения файла XML для ссылки на таблицу стилей.

0

1 ответ на вопрос

0
mbmast

You haven't stated any real requirements, other than being able to view XML with a stylesheet applied without modifying the XML to specify the stylesheet.

You could write a simple Java/C#/PHP/whatever application that reads the XML and parses it, creating either a DOM object or a JAXB class hierarchy, does the same with the XSL, applies the transformation and writes out the transformed XML. You can then view this in an appropriate viewer (that would be a function of the transformation -- typically it would be a text editor, a web browser, it could be PCL that you feed to a printer, anything really).

У меня нет никаких реальных требований. В идеале я хотел бы, чтобы программа просмотра XML открывала XML и перетаскивала на него XSL или выбирала из меню часто используемых преобразований для применения. Нечто простое, вот так. Scott Beeson 9 лет назад 0
Посмотрите на Altova XMLSpy. mbmast 9 лет назад 0

Похожие вопросы