- 授权协议: BSD
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://www.openjs.com/scripts/xml_parser/
软件介绍
xml2array() 是一个用来解析 xml 数据的 JavaScript 库,使用方法如下:
XmlHttp.onreadystatechange = function() {
if(XmlHttp.readyState == 4 && XmlHttp.status == 200) {
var arr = xml2array(XmlHttp.responseXml);
// Do what you want with 'arr'
}
});
Java Concurrency in Practice
Brian Goetz、Tim Peierls、Joshua Bloch、Joseph Bowbeer、David Holmes、Doug Lea / Addison-Wesley Professional / 2006-5-19 / USD 59.99
This book covers: Basic concepts of concurrency and thread safety Techniques for building and composing thread-safe classes Using the concurrency building blocks in java.util.concurrent Pe......一起来看看 《Java Concurrency in Practice》 这本书的介绍吧!
