摘要:
1. 字符串有整型的相互转换 String a = String.valueOf(2); //integer to numeric string int i = Integer.parseInt(a); //numeric string to an int 2. 向文件末尾添加内容 Buffered 阅读全文
摘要:
替换文本内容 update tk_question set stem=replace(cast(stem as varchar(max)) ,'被替换文本','替换文本') 查询字段内容长度 select DATALENGTH (字段) from table 阅读全文
摘要:
1、找到你的tomcat然后在conf文件中找到server.xml打开; <Server port="8005" shutdown="SHUTDOWN"> <Listener className="org.apache.catalina.core.AprLifecycleListener" SSL 阅读全文
摘要:
Enumeration en = request.getParameterNames(); while(en.hasMoreElements()){ String el = en.nextElement().toString(); ... 阅读全文
摘要:
$('#question-stem-uploader').on('click','',function(){ //获取编辑器内容(ke-edit-iframe: 编辑器iframe的classm名称)(ke-content:iframe里面包含内容的div的class名称) ... 阅读全文
摘要:
jsp中如何获得url路径request.getHeader("referer")JSP中获得当前应用的相对路径和绝对路径 根目录所对应的绝对路径:request.getRequestURI() 文件的绝对路径 :application.getRealPath(request.getReque... 阅读全文
摘要:
width编辑器的宽度,可以设置px或%,比textarea输入框样式表宽度优先度高。数据类型: String默认值: textarea输入框的宽度示例:K.create('#id',{width:'700px'});height编辑器的高度,只能设置px,比textarea输入框样式表高度优先度高... 阅读全文
摘要:
1、解决兼容性问题(1)页面最顶部必须定义:(2)点击:下载 respond.js 文件(3)引入;respond.js必须在样式表之后引用:(4)页面必须在服务器环境中运行,直接打开用不了2、使用css3判断窗口大小设置不同样式:举个例子:/*宽度小于500px时;背景为红色*/@media sc... 阅读全文
摘要:
一、myEclipse 复制后修改名称,访问不到项目这是因为,你只是改了项目的名称,而没有改下面是解决方法:方法 1.右击你的项目,选择“properties”,在“type filter text”中输入“web”,按下图表示输入您的新项目名称,记得不能把“/"去掉啊。重启下myEclipse就可... 阅读全文