记录精彩的程序人生
存档:
2021 年 03 月 (8)
现象:执行clean and build platform.download: ant -f D:\\GitHub\\acuibc clean build D:\NetBeans82\harness\suite.xml:130: Cannot open D:\GitHub\acuibc\${project.com.acuilab.bc.cfx.flappeebee}\nbproject\project.xml BUILD FAILED (total time: 0 seconds) 这个项目已经移除了,不知为何没同步删除,手动删除后正常编译
经过几天的研究,发现去掉启动时自动检查更新的最好方式是完全移除Auto Update UI模块。 当然副作用是,“工具”菜单里没有插件管理选项,而对于特定的应用程序来说,这个插件管理也不是必要的,有时去掉反而是更合适。至于所需的更新功能,在UI这一块需要开发人员自己去实现(调用Auto Update Services提供的功能)。 @see org.netbeans.modules.autoupdate.ui.actions.Installer @see org.netbeans.modules.autoupdate.ui.actions.AutoupdateCheckScheduler @see org.netbeans.modules.autoupdate.ui.actions.CheckForUpdatesProviderImpl
https://jxbrowser.support.teamdev.com/support/solutions/articles/9000012878-creating-browser
https://keepachangelog.com/zh-CN/1.0.0/ markdown在线编辑器:http://jbt.github.io/markdown-editor/
该文章已经加密。
/** * 批量转账 * @param privateKey 私钥 * @param to 接收地址列表 * @param value 转账数量列表 * @param gas 矿工费 * @throws java.lang.Exception */ @Override public void batchTransfer(String privateKey, String[] tos, BigInteger[] values, BigInteger gas, BatchTransferCallback callback) throws Exception { if(tos.length != values.length) { throw new java.lang.IllegalArgumentException("tos.length must equal with values.length"); } CFXBlockChain bc = Lookup.getDefault().lookup(CFXBlockChain.class); Cfx cfx = bc.getCfx(); A....
https://stackoverflow.com/questions/8083768/stop-cancel-swingworker-thread
20210301 20210312 20210313 20210314 20210315