我的数据库结构变大了。
首先,我对 JSON 和 XML 感到困惑。然后,我选择了 JSON 将数据存储在数据库中。
我正在尝试编译官方网站上给出的示例。但我无法这样做。
这是我的代码:
import static argo.jdom.JsonNodeFactories.*;
public class argojson
{
public static void main(String[] args)
{
JsonRootNode json = object( field("name", string("Black Lace")), field("sales",
number("110921")), field("totalRoyalties", number("10223.82")), field("singles",
array( string("Superman"), string("Agadoo") )) );
}
}
错误
JsonRootNode error: cannot find symbol
官方网站
http://argo.sourceforge.net/documentation.html