Java 的 XML 开发包 jOOX

码农软件 · 软件分类 · XML相关工具 · 2019-09-18 08:28:53

软件介绍

jOOX 是 Java Object Oriented XML 的缩写(尽管我觉得这名字有点猥琐),是 org.w3c.dom 包的简单封装。用于 XML 文档的创建以及 DOM 的操作,其思路很像 jQuery。

示例代码:

// Find the order at index 4 and add an element "paid"
$(document).find("orders").children().eq(4).append("<paid>true</paid>");

// Find those orders that are paid and flag them as "settled"
$(document).find("orders").children().find("paid").after("<settled>true</settled>");

// Add a complex element
$(document).find("orders").append(
  $("order", $("date", "2011-08-14"),
             $("amount", "155"),
             $("paid", "false"),
             $("settled", "false")).attr("id", "13");

本文地址:https://codercto.com/soft/d/14846.html

The Book of CSS3

The Book of CSS3

Peter Gasston / No Starch Press / 2011-5-13 / USD 34.95

CSS3 is the technology behind most of the eye-catching visuals on the Web today, but the official documentation can be dry and hard to follow. Luckily, The Book of CSS3 distills the heady technical la......一起来看看 《The Book of CSS3》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具