a、静态include:语法:<%@ include file="文件名" %>,相当于复制,编辑时将对应的文件包含进来,当内容变化时,不会再一次对其编译,不易维护。 b、动态include:语法:<jsp:include page="文件名">,能够自动检查被包含文件,当客户端对JSP文件进行请求 ...
分类:
Web程序 时间:
2021-01-04 11:16:26
阅读次数:
0
TypeError: 'module' object is not callable Person.py """ 类的定义 """ class Person: # 构造方法 def __init__(self, n, a, u): # global name, age self.name = n s ...
分类:
其他好文 时间:
2021-01-04 10:56:48
阅读次数:
0
http://blog.sina.com.cn/s/blog_6fbe21070101c2w5.html plutil -convert xml1 some_file.plist 将som_file.plist转换为xml文本plutil -convert binary1 some_other_fi ...
分类:
其他好文 时间:
2021-01-04 10:44:10
阅读次数:
0
系统属性 Java平台本身使用一个Properties对象来维护其自己的配置。System类中维护了一个静态的Properties对象保存当前工作环境的系统属性。 重要的系统属性 键 含义 "file.separator" 分隔文件路径各部分的字符。/在UNIX上是“ ”,\在Windows上是“ ...
分类:
编程语言 时间:
2021-01-04 10:43:38
阅读次数:
0
mysql备份工具mysqldump 基本备份与恢复 准备工作 [root@localhost ~]# yum -y install mariadb* [root@localhost ~]# systemctl enable --now mariadb Created symlink /etc/sy ...
分类:
数据库 时间:
2021-01-04 10:41:51
阅读次数:
0
mysql多实例部署 下载源码包 [root@localhost ~]# wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.7.31-linux-glibc2.12-x86_64.tar.gz [root@localhos ...
分类:
数据库 时间:
2021-01-04 10:40:58
阅读次数:
0
package com.csair.oas.utils.test; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutput ...
分类:
Web程序 时间:
2021-01-04 10:37:50
阅读次数:
0
#1.读本地文件,ANSI为GBK编码 p=open("e:\\a.txt") content=fp.read() print(content) fp.close() #2.读 fp=open("e:\\a.txt","r",encoding="gbk") fp.readlines() fp.clo ...
分类:
编程语言 时间:
2021-01-02 11:43:30
阅读次数:
0
1.创建Maven项目: 点击“File”菜单,或者通过工具栏的“New”创建Project,如下图所示: 选择Maven-》Maven Project,弹出向导对话框,如下图所示: 选中Create a simple project……复选框,其它的设置不变,并点击Next,输入maven项目必须 ...
分类:
Web程序 时间:
2021-01-02 11:15:14
阅读次数:
0
Git error The file will have its original line endings in your working directory Git项目提交代码,即执行git add .命令后,报了这个错误有点懵。 参考博客1:https://www.cnblogs.com/dy ...
分类:
其他好文 时间:
2021-01-02 11:05:53
阅读次数:
0