GreenDao在eclipse上的配置
阿新 • • 發佈:2019-02-06
開始之前建議先看官方的文件:http://greenrobot.org/greendao/
一、從github上clone程式碼到自己的本地目錄
作用:生成最新的jar包。
github的目錄:https://github.com/greenrobot/greenDAO. 這裡建議最好搞兩個包,一個是generator.jar,一個是greendaoc_core.jar二、建立自己Java的專案,即greenDaoGenerator.
在eclipse中新建一個java專案: public static void main(String[] args) {// TODO 自動生成的方法存根
Schema schema = new Schema(4, "com.example.greendaodemo.generator");
addNote(schema);
addCustomerOrder(schema);
try {
new DaoGenerator().generateAll(schema, "E:\\workspace\\android.environment\\at -bundle-windows-x86_64-20140702\\workspace\\GreenDaoDemo\\src");
} catch (IOException e) {
// TODO 自動生成的 catch 塊
e.printStackTrace();
} catch (Exception e) {
// TODO 自動生成的 catch 塊
e.printStackTrace();
}
}