- 浏览: 112754 次
- 性别:
- 来自: 大连
-
最新评论
文章列表
jQuery对象转成DOM对象:
jQuery对象不能使用DOM中的方法,但如果对jquery对象所提供的方法不熟悉,或者jQuery没有封装想要的方法,不得不使用DOM对象的时候,有以下两种处理方法。
jQuery提供了两种方法将一个jQuery对象转换成DOM对 ...
/* reset */
body{margin:0;padding:0 0 12px 0;font-size:12px;line-height:22px;font-family:"\5b8b\4f53","Arial Narrow";background:#fff;}
form,ul,li,p,h1,h2,h3,h4,h5,h6{margin:0;padding:0;}
input,select{font-size:12px;line-height:16px;}
img{border:0;}
ul,li{list-style-type:non ...
首先在我们的MyEclipse下创建一个普通Java Project,然后在工程下建个文件夹叫做templates,
在templates下建立模板文件叫作testFreeMarker.ftl,然后不要忘记加入freemarker.jar代码如下:
welcome ${customer} to sunyang!
创建java文件
package com.test.freemarker;
import java.io.File;
import java.io.IOException;
import java.io.OutputStreamWriter;
import ...
package com.yxq.model;
public class CreatePage {
private int CurrentP; //当前页码
private int AllP;
private int AllR;
private int PerR;
private String PageLink; //分页导航栏信息
private String PageInfo; //分页状态显示信息
public CreatePage(){}
public int getAllP() {
return AllP;
}
/** ...
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page language="java" %>
<%@ page import="java.sql.*" %>
<html>
<head>
<title>分页显示数据库记录</title>
</head>
<body>
<div align="center"><s ...
package com.util.mail;
/**
* 发送邮件需要使用的基本信息
*/
import java.util.Properties;
public class MailSenderInfo {
// 发送邮件的服务器的IP和端口
private String mailServerHost;
private String mailServerPort = "25";
// 邮件发送者的地址
private String fromAddress;
...
<%@ page language="java" pageEncoding="gbk"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>file upload</title>
</head>
<body>
<font size=" ...
package com.mldn.map;
import java.util.HashMap ;
import java.util.Map ;
import java.util.Set ;
import java.util.Iterator ;
public class IteratorDemo04{
public static void main(String args[]){
Map<String,String> map = null; // 声明Map对象,其中key和value的类型为String
map = new HashMap<S ...
package org.lxh.demo13.setdemo;
import java.util.LinkedList;
import java.util.List;
import java.util.Collections;
class Person implements Comparable<Person>{
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age; ...
到目前为止,foreach语法主要用于数组,但是它也可以应用于任何Collection对象。你实际上已经看到过很多使用ArrayList时用到它的示例,下面是一个更通用的证明:
import java.util.*;
public class ForEachCollections {
/**
* @param args
*/
public static void main(String[] args) {
Collection<String> cs = new LinkedList<String>();
Collec ...
package com.bjsxt.print;
import java.io.FileOutputStream;
import java.io.PrintStream;
public class TestPrintStream1 {
public static void main(String[] args) throws Exception {
PrintStream ps = null;
FileOutputStream fos = new FileOutputStream("c:\\bak\\log.dat");
p ...
package com.bjsxt.buffer;
import java.io.* ;
class Send implements Runnable{ // 线程类
private PipedOutputStream pos = null ; // 管道输出流
public Send(){
this.pos = new PipedOutputStream() ; // 实例化输出流
}
public void run(){
String str = "Hello World!!!" ; // 要输出的内容
try{
...
package com.bjsxt.transform;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
public class TestTransform1 {
public static void main(String[] args) throws Exception {
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("c:\\bak\\char.txt")) ...
package com.bjsxt.buffer;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
public class TestBufferStream1 {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
FileInputStream fis = new FileInputStream(" ...
package com.bjsxt.reader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import static com.itcase.Print.*;
public class TestFileReader {
public static void main(String[] args) {
FileReader fr = null;
int c = 0;
try {
...