自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (1)
  • 收藏
  • 关注

原创 myBatis中如何进行数据库访问

1,首先在包下创建Configuration.xml文件,该文件的格式如下:   <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd">

2012-02-08 16:24:39 846

原创 使用POI包进行Excel文件操作(2)

使用POI包读取Excel文件的内容:一,构造工作簿对象FileInputStream fis = null;try { // 构造文件输入流 fis = new FileInputStream("d:\\temp.xls");} catch (FileNotFoundException e) { e.printStackTrace(); System.exit(0

2012-01-12 16:18:45 345

原创 使用POI包进行Excel文件操作(1)

利用poi包创建excel文件,并根据不同的数据格式填入数据:// 1,创建工作簿HSSFWorkbook wb = new HSSFWorkbook();// 2,创建工作表HSSFSheet sheet = wb.createSheet("员工信息统计");// 3,创建标题行HSSFRow row = sheet.createRow(0);// 4,设置行高r

2012-01-12 15:54:55 394

原创 <activity>元素的android:launchMod属性的使用

AndroidManifest.xml文件中,元素是使用频率最高的元素,该元素声明了应用中的活动(Activity)。常用的形式如下: <activity android:label="@string/app_name" android:name=".HelloAndroidActivity" >另外,该元素还有个android:

2012-01-11 10:19:58 810

ASP.NET MVC 2 Framework教程

ASP.NET MVC 2的学习教程。 The ASP.NET MVC V2 Framework is the latest evolution of Microsoft's ASP.NET web platform. It introduces a radically new high-productivity programming model that promotes cleaner code architecture, test-driven development, and powerful extensibility, combined with all the benefits of ASP.NET 3.5. In this book, the core model-view-controller (MVC) architectural concepts are not simply explained or discussed in isolation, but are demonstrated in action. You'll work through an extended tutorial to create a working e-commerce web application that combines ASP.NET MVC with the latest C# language features and unit-testing best practices. By gaining this invaluable, practical experience, you'll discover MVC's strengths and weaknesses for yourself--and put your best-learned theory into practice. What you'll learn Gain a solid architectural background to ASP.NET MVC V2, including MVC and REST concepts. Explore the entire ASP.NET MVC Framework and take a detailed look at the official MVC development toolkit. See how it works with test-driven development in action. Capitalize on your existing knowledge quickly and easily through translation and comparison of features in classic ASP.NET to those in ASP.NET MVC. Learn about the latest security and deployment issues, including IIS 7.0. Who this book is for This book is for web developers with a basic knowledge of ASP.NET and C# who want (or need) to start using the new ASP.NET MVC V2 Framework. 

2011-11-15

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除