我从http://wiki.apache.org/couchdb/Getting_started_with_Java
获得以下代码Session s = new Session("localhost",5984);
Database db = s.getDatabase("foodb");
Document doc = db.getDocument("documentid1234");
doc.put("foo","bar");
db.saveDocument(doc);
...
我想知道哪个jar文件包含Session类。我找到了https://docs.oracle.com/javaee/6/api/javax/mail/Session.html?is-external=true,但它并不是我需要的。
你有什么想法吗?
答案 0 :(得分:0)
此类Session的全名是什么,因为可能有多个会话类。您可以在eclipse中使用Ctrl+Shift+T
来打开您的类并检查jar所在的位置。
您还可以使用此
CodeSource src = MyClass.class.getProtectionDomain().getCodeSource();
if (src != null) {
URL jar = src.getLocation(); }
它适用于除bootstrap类加载器
加载的类之外的所有类