如下build output 输出的是乱码# 解决方案双击shift,在里面输入如下,并且点击第一个然后在里面输入-Dfile.encoding=UTF-8) } }}uploadArchives.dependsOn sourcesJar启动时,我收到以下错误:找不到参数的方法
2023-07-28 michael007js 890
问题描述原因分析解决方案apply plugin: 'maven'uploadArchives { repositories.mavenDeployer { repository(url:uri('../repo')) pom.groupId = 'com.hougr' pom.artifactId = 'transform.printjar
2023-07-28 michael007js 815
出现错误Caused by: java.lang.NullPointerException: Location is required的解决方法问题原因问题出现的原因是因为空指针,也就是getClass().getResource(“sample.fxml”)这个方法的结果为空我们可以测试一下,把代码稍微分为两段如图,如果为空,则输出hello,停止程序测试结果如下图分析上面我们知道了,没有找到该
2023-07-17 michael007js 241
Unable to make field long java.nio.Buffer.address accessible解决方案在IntelliJ IDEA中添加--add-opens标志转到运行/调试配置菜单。您可以在顶部工具栏中找到它,或者导航到Run -> Edit Configurations。在配置设置中,您会找到一个名为“VM options”或“VM options:”的字段。
2023-07-09 michael007js 513
在pull和push的时候报错:Could not resolve host: github.com解决方法:1.win+r,输入cmd进入命令行;2.输入ping github.com3.进到git的安装目录下,在进入etc目录,找到hosts文件,拖到桌面以记事本打开,在最后一行加入:192.30.253.112 github.com保存之后,拖回原位置并替换原hosts文件。重新打开git就
2023-07-07 michael007js 1925
运行环境IDEA版本:2020.2.3Windows 10git 版本:2.29.2问题描述:每次push到github时都提示登录,如下图: 然而,用命令行push是成功的(此方法适用的前提是能从命令行登录)。 IDEA的File|Settings|Version Control|GitHub的配置是已经授权成功了: 试了下使用Token和Login Via GitHub都是可以正常授权的。解
2023-06-29 michael007js 877