updates libraries (-L) paths in compiler and linker options 3.14 Options for Directory SearchThese options specify directories to search for header fi ...
分类:
其他好文 时间:
2020-01-03 09:13:06
阅读次数:
208
1.自定义库 Window->Preferences->Java->Build Path->User Libraries->New->为新自定义的用户库取名并不勾选(如图),然后OK,单击刚才自定义的库名->Add External JARs(添加jar包)->Apply and Close 2.引 ...
分类:
其他好文 时间:
2019-12-29 11:27:00
阅读次数:
100
本地总是需要登陆才行,嫌麻烦,就找了底层代码直接修改代码跳过登陆,修改方式如下:phpMyAdmin\libraries\classes\Plugins\Auth\AuthenticationCookie.php 文件 readCredentials() 方法添加了两段代码,下面截取部分代码,红色为 ...
分类:
Web程序 时间:
2019-12-27 13:23:29
阅读次数:
97
或者到tomcat的lib目录下面找到这个包,然后在eclipse中,右击项目,选择Java Build Path>Libraries>Add External JARS,找到你计算机中的tomcat的安装路径,在common\lib文件夹下,选中"servlet-api.jar",添加点击“确定” ...
分类:
编程语言 时间:
2019-12-27 00:19:40
阅读次数:
89
select fk.name,fk.object_id, OBJECT_NAME(fk.parent_object_id) as referenceTableNamefrom sys.foreign_keys as fkjoin sys.objects as o on fk.referenced_o... ...
分类:
其他好文 时间:
2019-12-25 11:31:16
阅读次数:
99
Linux系统安装MySQL,环境参数: 硬件配置:CPU: Xeon(R) CPU E5-2650 v4 @ 2.20GHz 8核内存:16G硬盘:系统盘200GB 数据盘1TB 操作系统CentOS 7.2 64位 数据库MySQL 5.6.43 执行scripts/mysql_install_ ...
分类:
数据库 时间:
2019-12-24 16:58:20
阅读次数:
131
错误: $ make menuconfig *** Unable to find the ncurses libraries or the *** required header files. *** 'make menuconfig' requires the ncurses libraries. ...
分类:
其他好文 时间:
2019-12-23 15:02:58
阅读次数:
73
对接前端的源码。 运行前端源码。在本地我们使用tomcat 我们使用9.0的版本 在我们的项目里展开Libraries 内置的tomcat也是9.0 解压出来的目录 webapps用于放我们的项目 把前端页面放在这个webapps的目录下 Mac电脑下的运行。找到bin目录。 也是通过命令行脚本去运 ...
分类:
其他好文 时间:
2019-12-23 13:17:42
阅读次数:
85
问题现象: 执行ffmpeg命令后报错: 出问题的环境信息为: 看下需要哪些依赖: 可以看到缺失的依赖 我们找下这些文件在哪里 应该都在这个目录 我们export出来: 然后再尝试执行 问题解决 ...
分类:
其他好文 时间:
2019-12-22 12:29:11
阅读次数:
336
直接上代码图,后认识到main方法是一个static方法,class Clerk是一个非静态的内部类,只能被该类的非静态方法访问。否则会报错。 解决方法: 1.在class前加上static 2.将该类移出来。 ...
分类:
其他好文 时间:
2019-12-21 12:04:06
阅读次数:
654