`
milk_nenu
  • 浏览: 13526 次
  • 性别: Icon_minigender_1
  • 来自: 成都
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
       ReadFile函数从文件指针指定的位置读取数据。读操作完成后,文件指针将根据实际读出的数据自动进行调整,除非文件句柄是以OVERLAPPED属性值打开的。如果是以OVERLAPPED打开的I/O,应用程序就需要自己手动调整文件指针 ...
  函数原型:  HANDLE CreateFile(   LPCTSTR lpFileName, //指向文件名的指针   DWORD dwDesiredAccess, //访问模式(写/读)   DWORD dwShareMode, //共享模式   LPSECURITY_ATTRIBUTES lpSecurityAttributes, //指向安全属性的指针   ...
打开文件对话框的使用   首先引入头文件#include <commdlg.h>   //打开文件对话框 OPENFILENAME ofn;//strcut类型 char szFile[MAX_PATH]; //ZeroMemory相当于memset(buffer,0,length)中参数2设置成 ZeroMemory(&ofn,sizeof(ofn)); ofn.lStructSize=sizeof(ofn); ofn.lpstrFile=szFile; ofn.lpstrFile[0]=TEXT('\ ...

memset函数

void * memset ( void * ptr, int value, size_t num ); Fill block of memory Sets the first num bytes of the block of memory pointed by ptr to the specified value (interpreted as an unsigned char). Parameters ptr Pointer to the block of memory to fill. value Value to be set. The value is ...

封装DB

package com.zm.bbs; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class DB { public static Connection getConn(){ Connection conn=null; try { Class.forName("com.mysql.j ...
 struts2中的路径问题是根据action的路径而不是jsp路径来确定,所以尽量不要使用相对路径。 虽然可以用redirect方式解决,但redirect方式并非必要。 解决办法非常简单,统一使用绝对路径。(在jsp中用request.getContextRoot方式来拿到webapp的路径) 或者使用myeclipse经常用的,指定basePath     <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request. ...
1.namespace决定了action的访问路径,默认为"",可以接收所有路径的action<br />namespace可以写为/,或者/xxx,或者/xxx/yyy,对应的action访问路径为/index.action,/xxx/index.action,或者/xxx/yyy/index.action.<br/>namespace最好也用模块来进行命名2.Action1.java中内容:      写道 package com.zhangmin.struts2.action;import com.opensymphony.xwork2. ...
一 .搭建struts开发环境 找到开发struts的jar包 下载struts-2.2.3.1-all.zip文件并解压 从中找出开发struts程序最少需要的jar    Struts2-core-2.x.x.jar  Struts框架的核心类库 Xwork-2..x.x.jar  XWork类库,Struts2在其上构建 Ognl-2.6.x.jar:   对象图导航语言,Struts2通过其读写对象的属性 Freemarker-2.3.x.jar  Struts2的UI标签的模版通过FreeMarker编写 Commons-logging-1.1.x.jar  ASF出品 ...
方法总结 方法一:在线安装 1.打开HELP-&gt;MyEclipse Configuration Center。切换到SoftWare标签页。 2.点击Add Site 打开对话框,在对话框Name输入Svn,URL中输入:http://subclipse.tigris.org/update_1.6.x 3.在左边栏中找到Personal Site中找到SVN展开。将Core SVNKit Library和Optional JNA Library添加(右键Add to Profile),Subclipse下面的Subclipse Integration for Mylyn 3.0可以 ...
数据库创建: CREATE DATABASE student ON PRIMARY( NAME='student', FILENAME='E:\student.mdf', SIZE=5MB, MAXSIZE=30MB, FILEGROWTH=1MB) LOG ON (NAME='student_log', FILENAME='E:\student_log.ldf', SIZE=2MB, MAXSIZE=10MB,     FILEGROWTH=5%) COLLATE Chinese_PRC_CI_AS -------------------------------- ...
Global site tag (gtag.js) - Google Analytics