- 浏览: 22229 次
- 性别:
- 来自: 湖南株洲
最新评论
文章列表
效果图: 以下是源代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-CN" ...
- 2009-06-05 16:16
- 浏览 6223
- 评论(0)
无需导入com组件,无需绑定Datatable,将 listview 声明为此类的实例,再直接调用 doprint()方法就可以进行打印了,非常方便简单。
下面是源代码:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Drawing .Printing ;
namespace UI_Form {
/*
...
- 2009-06-05 15:55
- 浏览 2385
- 评论(0)
主要用到: Collections.sort()方法:
1. JavaBean —— Content.java:
package com.hmw.listsort;
public class Content {
private long key;
private String name;
public Content(long key, String name) {
this.key = key;
this.name = name;
}
public long getKey() {
return key;
}
pu ...
- 2009-06-05 15:21
- 浏览 8238
- 评论(0)
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* 将汉字转化为全拼
*/
public class CnToSpell1 {
private static Map<String, Integer> spellMap = null;
//存放生僻字和其拼音的Map
private static Map<Character, String> uncomm ...
- 2009-05-10 01:02
- 浏览 5383
- 评论(0)