web3j:https://docs.web3j.io/index.html
如何使用Web3j生成私鑰和地址,而不只是創建密鑰存儲JSON文件?
https://blog.csdn.net/mongo_node/article/details/81094551
以太坊 錢包 創建 導入 Keystore:
https://blog.csdn.net/u010123087/article/details/79608939
以太坊ETH開發3(助記詞、賬戶導入、賬戶導出)
https://blog.csdn.net/m0_37754981/article/details/82116887
以太坊開發環境搭建(go+geth+ganache+remix)
https://blog.csdn.net/apple9005/article/details/81222287
以太坊單節點私鏈搭建(go+geth+Etherum Wallet)
https://blog.csdn.net/apple9005/article/details/81045933
參考博文:https://www.cnblogs.com/hongpxiaozhu/p/8574257.html
https://docs.web3j.io/
部署合約用例:https://blog.csdn.net/sunny2come/article/details/81330438
https://github.com/jsphLim/ViolationSystem
https://blog.csdn.net/zm1314sxd/article/details/82777739
下載web3j-3.3.1 地址:https://github.com/web3j/web3j/releases/tag/v3.3.1
6分鍾以太坊實戰系列-Web3j對智能合約的調用:https://www.jianshu.com/p/3671b65462aa
win 7系統web3j部署調用智能合約:https://blog.csdn.net/qq_35420123/article/details/81806411
第一課 如何在WINDOWS環境下搭建以太坊開發環境:https://www.jianshu.com/p/683ea7d62a39
Truffle框架和Ganache本地私鏈:https://blog.csdn.net/myherux/article/details/80340095
使用web3j構建以太坊錢包:https://www.jianshu.com/p/1b716180bc4b
【以太坊開發】Web3j對以太坊錢包功能的實現
https://blog.csdn.net/harwey_it/article/details/80136311
如何使用Web3J創建、導入以太坊錢包https://www.onethreeone.top/2018/06/26/%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8Web3J%E5%88%9B%E5%BB%BA%E3%80%81%E5%AF%BC%E5%85%A5%E4%BB%A5%E5%A4%AA%E5%9D%8A%E9%92%B1%E5%8C%85/
如何使用Web3J創建、導入以太坊錢包
https://www.jianshu.com/p/ba1d8c6fcbfb
Jfinal項目中加入以太坊插件web3j
我們知道要開發java以太坊項目,需要借助web3j庫來實現與部署的以太坊通信,之前百度了很多教程,網上用的都是Maven和Gradle開發,可參考官方提供的demo(https://github.com/web3j),或者有些像我一樣的小白,沒有使用過gradle項目開發的經驗,你也可以參考這篇文章《Eclipse+Web3j開發以太坊應用》(https://blog.51cto.com/13692892/2136026)進行部署開發。
windows下:
1、啟動Geth私鏈節點
切換到工作目錄下
D:\javadevelop\test>
啟動私鏈節點
geth --dev --identity "xiaokang" --rpc --rpccorsdomain "*" --rpcaddr "192.168.1.126" --datadir "./data" --port "30303" --nodiscover --rpcapi "personal,db,eth,net,web3,miner" --networkid 1999 console 2>>geth.log
2、啟動mist錢包
進入到mist錢包目錄,並執行Mist.exe啟動程序
如下圖所示,連接私鏈成功!