`
E,我卡了
  • 浏览: 30990 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
1、php.ini文件下修改如下: upload_max_filesize = 8M post_max_size = 10M memory_limit = 20M    2、用户权限设置上传大小 用户->管理组->附件相关   3、板块管理设置   参考:http://www.discuz.net/thread-2434850-1-1.html   重启服务器生效:service httpd restart   php.ini的位置如果找不到,写一个phpinfo放到相应目录下,可以查看到此文件的位置。
1、首先在请求表单之前:this.saveToken(request); 2、其次表单使用:<html:form>标签 3、再者处理表单处用isTokenValid(request)检查token,然后合法后resetToken(request);     <html:form action="/Login.do?m=doLogin" method = "POST"> <html:text property="username"></html:text> < ...
核心代码:   try { String command = "cmd /c dir"; Process process = Runtime.getRuntime().exec(command); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream())); while((output=bufferedReader.readLine()) != null){ System.out.print ...
<html> <head> <script type="text/javascript"> function testJs(){ var tem1 = "xingming"; var tem2 = "姓名"; var result = encodeURI(tem2); alert(result); } function testJs2(){ var tem1 = &qu ...
cast('17/09/2012' as datetime)     插入日期格式的时候,在手动执行的时候不会报错,但是搞到作业里面会报”从 char 数据类型到 datetime 数据类型的转换导致 datetime 值越界“错误,用此药,好了!     尼玛,过了一会又报错了,经查实,是数据库里有一个时间为:2000-00-00 00:00:00:000的时间,删除,又平息了...   总结:(解决办法) 1、转换函数没有转换到指定类型; 2、转换的数据有问题;
  select a.tid,a.subject,a.dateline from cdb_forum_posts a ,cdb_forum_threads b where a.tid=b.tid and b.digest=1 and a.first =1 and a.fid=15    tid 帖子本身的id  fid 帖子对应的论坛版块的id
启动线程的几种方法:(LiftOff实现Runnable接口) 1.直接在main中调用run()方法,其实不是单独线程驱动的,只有main线程; 2.Thread类   Thread t1 = new Thread(new LiftOff()); Thread t2 = new Thread(new LiftOff()); t1.start(); t2.start();   3.使用Executor   //ExecutorService exec = Executors.newCachedThreadPool(); //ExecutorService exec = ...
1.上次有人在百度发出求解a点坐标(i,j),b点坐标(m,n),c点坐标(x,y),c到a点的距离l,c到b点的距离k,求c点坐标,其中i,j,m,n,l,k都为已知,求c点坐标x,y。于是我就写了下面这个程序,之后看到别人的解答,不知道自己数学之心太重还是脑筋太死!   package com.tim.baidu; /** * 主函数 * @author Tim */ public class CPointMain { //a点坐标(i,j),b点坐标(m,n),c点坐标(x,y),c到a点的距离l,c到b点的距离k,求c点坐标 public static voi ...
简单写下Struts1配置过程: 1.导入必须的jar包,最少包括commons-beanutils.jar,common-digester.jar,common-logging.jar,struts.jar。   2.配置文件web.xml注册Struts1的servlet、配置文件名及路径、接收路径格式。   3.配置文件struts-config.xml,包括必要的formbeans(可无),action,forward。   4.写自己的action。     PS:文件如下: 1.web.xml   <?xml version="1. ...
java中,如果作除数的是浮点数0,则编译运行是不会报错的,并且,在此处用try catch语句也是抓捕不到异常的。 public class FloatTest { private float dividend = 0; private float divisor = 0; public float floatDivision(float dividend,float divisor){ float result = 0; //在这里进行try catch是徒劳的 result = dividend/divisor; return result; ...
/** * 写文件 * @param string * @param toFile */ public static void writetoFile(String string,String toFile){ RandomAccessFile rf = null; try { System.out.println("续写状态,写文件开始>>>>>>>"); rf = new RandomAccessFile(toFile,"rw"); ...
本文转载,引自:http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html 1、按字节读取文件内容2、按字符读取文件内容3、按行读取文件内容 4、随机读取文件内容    public class ReadFromFile { /** * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。 */ public static void readFileByBytes(String fileName) { File file = new File ...
  Statement stmt = conn.createStatement(); stmt.executeUpdate(sql); ResultSet rs = stmt.getGeneratedKeys(); if(rs.next()){ int n = rs.getInt(1); }  
function redirect($url, $time=0, $msg='') { //多行URL地址支持把其中的\n,\r删掉 $url = str_replace(array("\n", "\r"), '', $url); if (empty($msg)) $msg = "系统将在{$time}秒之后自动跳转到{$url}!"; if (!headers_sent()) ...
  昨晚的注册信息在提交数据库的时候,总是有个问题就是,部分字段插入到数据库了,但是有个字段老是插入不进去,我的字段名称是对的,插入方式肯定也是对的,各种控制变量都试过了还是不行,之后删浏览器缓存,删项目缓存,都没能成功,调至崩溃...     今天起来,重新试过 还是不行,google知thinkphp有很多缓存,便于提高速度,所以,把所有的缓存文件,像:Runtime整个文件夹都删掉了,外围的只要是不是我手动改过的文件统统删掉了,再插入,OK!     原因:thinkphp会把数据库字段缓存,之后直接匹配缓存中得字段,而我恰恰在运行过一次之后,改过数据库中得该字段,之后应该也是缓存没有 ...
Global site tag (gtag.js) - Google Analytics