(1)判断一个数是不是2的乘方的方法:对于整数num,如果(num&(num-1))0,那么这个数就是2的乘方。 程序如下: public class Test { public static void main(String[] args) { …
import java.util.*; public class GenSN { Random objRandom; public GenSN() { long seedCalendar.getInstance().getTimeInMillis(); objRandomnew Random(seed); } private char genChar() { //要生成的字符包括26个字母,10个数字,总共有…
去掉一个字符串中的转义字符/" String result getInfo.getRoomInfo(startCode code);
result.replace("\\\"","");
ResultTo resTo gson.fromJson(result, ResultTo.class);但是尝试了n多操作,都没有替换成功,后来发现…
使用jetty版本:jetty-websocket-8.0.4.v20111024.jar
使用servletapi版本:3.0
服务器端servlet继承 WebSocketServlet 实现websocket连接。如下代码:
public class Communicate extends WebSocketServlet {private static final long seri…
1. 几个名词
CTS : Common Language Sytem
CLR : Common Language RunTime
CLS : Common Language Specification 2. 对象类型
值类型:简单类型、结构类型、枚举
应用类型: Class 、 strin…
关于字符串判断 String a “a”; String b “b”; String c “ab”;//方法区 直接赋值的方式 最多产生一个对象在方法区, 如果方法区中已经有了该字符串常量,那么只会把该常量的引用返回给c ,而不会创建新的对象。这种方式会产生0-1个字…
转载自 http://www.cnblogs.com/starspace/archive/2008/12/17/1356672.html
# # get the current date, # format is: YYYY-MM-DD HH(24):MM:SS # sub getcurrdate { my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $time) localtime(); my $date; $date…
1 private string RunCmd(string command)2 {3 //實例一個Process類,啟動一個獨立進程4 Process p new Process();5 6 //Process類有一個StartInfo屬性,這個是ProcessStartInfo類,包括…
我们都知道字符串在各个语言当中都是经常使用的对象,下面让我们看一下在node js 中字符串可能遇到的问题。 举个例子:
var i 33;
if (i 33) {console.log(tttttttt);
}输出如下:
tttttttt可以看到,当我们做字符串变量比较的时…
/*3.编程 ,完成以下功能:(1)声明一个名为s的String对象,并使它的内容是“My name is Carrol”;(2)打印整个字符串;(3)打印字符串的长度࿱…
Write a function that takes a string as input and returns the string reversed. Example:
Given s "hello", return "olleh".
实现: class Solution { public: string reverseString(string s) { int len s.length(); …
文字水印的生成方法File fImage new File("/sdcard/dcim", "beijing.jpeg");FileOutputStream iStream new FileOutputStream(fImage);Bitmap oriBmporiBmp.compress(CompressFormat.JPEG, 100, iStream);int w 320, h 240;String mstrTitle "感…
亲,有见过类似以下代码吗? Test t new Test("张三") {protected void test() {System.out.println("李四");}
};
t.ttest();这段代码的意思是,Test类有一个public Test(String s)的函数,也有一个protected v…
使用Java写文件不覆盖原有内容
public void writeToTXT(String str){FileOutputStream o null;String path"YourFilePath";String filename"YourFileName.txt";byte[] buff new byte[]{};try{File file new File(pathfilename);if(!file.exists()){fil…
当经常使用特殊字符分割时,在使用StringTokenizer和使用 split中进行考虑时,应使用split,StringTokenizer是遗留方法,为了支持较早版本。
StringTokenizer tok new StringTokenizer(jdbcDrivers, ","); while…
toLowerCase()方法用来返回一个字符串,该字符串中的字母被转换成小写字母,而且对非字母字符不会产生影响
示例如下:
public class TwoLowerCaseTest {public static void main(String[] args) {String t "Hello World AQWEsd123^&…
缺陷是,我想进行改进,却不知如何做起。
#include<stdio.h>
int main()
{char string[81];int i, num 0, word 0;char c;gets(string);for (i 0; (c string[i]) ! \0; i ) //这里检查是否是结束符 ,C中‘\0’为字符串结束符…
下面的这段代码演示了如何使用DataContractSerializer序列化程序序列化对象。代码中首先使用LINQ to SQL从数据库中读取编号为ALFKI的客户的记录,并返回一个Customer实体类对象。然后使用DataContractSerializer序列化对象,并将生成的XML打印到控制台上。…
问题:已知s为一个String对象,现要判断其是否为空,下面的写法是否可行?
if (s null || s "")System.out.println("s的内容为空");elseSystem.out.println("s的内容不为空");
答案是:…
格式化开销 实际上,将数据写入文件只是输出开销的一部分。另外一个巨大的开销是数据的格式 化。考虑下面的三个例 子,要求其输出如下的行: The square of 5 is 25 方法 1 第一种方法是简单地输出一个固定串,以得到内部I/O开销的概…
源码函数分享GetUrlByXmlHttp XMLHTTP方式下载网页〓〓〓〓〓〓〓〓〓〓GetUrlByXmlHttp函数相关定义声明等 StartPrivate Declare Function GetTickCount Lib "kernel32" () As LongPrivate Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As …
文章目录1.String2.StringBuilder、AbstractStringBuilder3.StringBuffer1.String
public final class String implements……{private final char value[];//存储数组本身private int hash;//用来存储计算后的哈希值
}总结: final修饰类,String类不可继…
要求使用while循环,且必须计算到1/(2n1)<0.00001时为止。
public class DoWhileDemo { public static void main(String args[]) { int n1; double dSum1.0,dTemp; do { n2*n1; dTemp1.0/n; //非常关键。如果把1.0写成整数1…
QWidget * QTableWidget::cellWidget ( int row, int column ) constReturns the widget displayed in the cell in the given row and column.QWidget * widgetui->tableWidget->cellWidget(i,0);//获得widgetQComboBox *combox(QComboBox*)widget;//强制转化为QComboBo…
int AdHostID Integer.parseInt((String)session.getAttribute("ID")); 1 如何将字串 String 转换成整数 int? A. 有两个方法:1). int i Integer.parseInt([String]); 或 i Integer.parseInt([String],[int radix]); 2). int i Integer.valueOf(my_str).intVal…
class Test0 { public static String staticField "父类-静态变量"; public String field "父类-普通变量"; public Test0() { System.out.println("父类-构造器"); } static { System.out.println(staticField); System.out.println…
spring security2之后namespace方式使得在配置上大大降低了门槛,一个简单的基础<http auto-configtrue/>就可以搞定一个demo,如果你的系统接受那个单调而古板的ss默认的登录页面和英文的错误提示,那对于你而言,ss只是一个几…
点击打开链接public void CommuertReportExcel(){DataTable dtshow new DataTable();DataTable dt new DataTable();string sql "select LogTime,AttendantWorkNo,ActionName from AttendantLogInfo where ActionName in(登录,下班) " search_condition() "…
1.兔子的规律为数列1,1,2,3,5,8,13,21....
public class Rabit { public static void main(String[] args){ int i1,j1,sum1; for(int k1;k<20;k){ if(k1||k2){ System.out.println("第"k"个月的兔子总数为:"sum*2); } else{ sum ij; Sy…
Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines…
视频演示:http://u.115.com/file/f22c71efbb特别说明从这个演示开始,将会用好几个演示连续性的介绍有关LINQ to SQL的关系映射的问题。
演示说明此演示简单介绍了《关系映射》系列课程的基本安排,以及简单说明LINQ to SQL支持的三种类型的映…
此代码使用的是LINQ to XML的函数构造功能创建一个XML树,其中树中的一些元素是通过LINQ查询结果填充。实际上,通过本例也可以看到如何使用LINQ to XML将原始XML文档转换成为另外一种XML文档。下面代码中使用的PurchaseOrder.xml文档内容:<…
此示例代码主要用来示范如何在LINQ to SQL的对象模型中生成映射到SQL用户定义的标量值函数的函数。SQL Server的标量值函数通常类似与如下的定义:CREATE FUNCTION ReverseCustName(CustomerID nchar(5))RETURNS nvarchar(30)ASBEGINDECLARE CustomerName nvarchar(3…
此代码示范了如何使用LINQ to XML将XML文档加载到内存中,并且如何通过XDocument.Descendants()对象方法按着顺序获取指定名称的所有子元素,以及如何通过XElement.Attribute()方法来获取指定名称的元素属性,进而访问属性值。
下面的示例代码首…
Java代码 public class BinaryTree { public static void main(String[] args) { BinaryTree bt new BinaryTree(); int[] ints {12,123,21,123,1,432,23,42,3,123,124,3,5435,66,456554,435,423,42,1} ; for (int i 0; i <ints.len…
1 尽量用StringBuilder 不要用String,因为编译器底层会自动帮你用StringBuilder
2 如果想要打印出对象的内存地址,不要在toString用this,这样会产生无限的迭代 public class A
{public String toString(){return "A:"this;}
}因为编译器看到了…
原字符串 "I am a student." 转化为"student. a am I". 注意事项:注意判断条件,根据 和/0来判断一个单词.对字符串首部要进行特殊处理. //不使用库函数,对字符串进行以空格划分的逆序排列.#include <iostream>using namespace std;const int SIZE 2…
1,String对象在内存中所占内存大小
为了方便查找生成的String对象,编写以下测试代码 public class StringMain{public static void main(String[] args){StringTest t new StringTest();print();}public static void print(){}
}class StringTest{private String …
原文地址为:
插件8:拼写检查<?php // Plug-in 8: Spell Check// This is an executable example with additional code supplied
// To obtain just the plug-ins please click on the Download link$text "It was the best of tmes, it was t…
C对象模型之一 关于对象笔记前言 <<Inside The C Object Model>>Stanley B.Lippman著;中文版《深度探索C对象模型》侯捷翻译。看到大家都认为是本好书,所以从Chinapub中购买会来。看了一遍后觉得昏昏沉沉,主要是很琐碎,其中此书有…
在C中,有两种类型的字符串表示形式:
C-风格字符串C引入的string类
C-风格字符串
C 风格的字符串起源于 C 语言,并在 C 中继续得到支持。字符串实际上是使用 null 字符 ‘\0’ 终止的一维字符数组。因此,一个以 null 结尾的字符…
JAVA获取当前日期 import java.util.*; public class D { public static void main(String []abc) { int y,m,d,h,mi,s; Calendar calCalendar.getInstance(); ycal.get(Calendar.YEAR); mcal.get(Calendar.MONTH); dcal.get(Calendar.…
基本数据类型:int、double、char、boolean等
包装类:Integer、Double、Character、Boolean等
1 基本数据类型和包装类的相互转换— >基本数据类型转包装类:自动装箱(即直接赋值)
int a 8;
Integer b a; >包装类转基本数据类型&…
function getchildren(ele,tag){//第一个参数判断if(!(ele&&ele.nodeType1)){throw new Error(第一个参数错误);}var childs ele.childNodes;var a [];//判断参数个数;如是是2个执行if(arguments.length2){//判断第二个参数不是字符串if(typeof tag!string…
1、VisitInfo模型 view plaincopy to clipboardprint? Entity Table(name System_VisitInfo) Cache(usageCacheConcurrencyStrategy.NONSTRICT_READ_WRITE) public class VisitInfo implements Serializable { private static final long serialVersionUID 287 &…
Java代码 CREATE DATABASE interceptor CHARACTER SET utf8; USE interceptor; DROP TABLE IF EXISTS users; create table users( id int auto_increment primary key, name varchar(10) not null, passwd varchar(10) not null )ENGINEInnoDB…
IDE使用的MyEclipse6.5,数据库使用MySQL 5.0.37 , 另装了Navicat for MySQL , jdk版本是6.0 工程做完的效果图如下,com.zly.indexManager中两个类,分别创建索引和搜索索引, com.zly.test.entity中是使用的实体类,分别是…
instanceof 运算符是用来在运行时指出对象是否是特定类的一个实例。instanceof通过返回一个布尔值来指出,这个对象是否是这个特定类或者是它的子类的一个实例。 用法:
result object instanceof class
参数:result必选项。任意变量。o…
LoginAction.java
public class LoginAction implements Action { //使用类型转换器将字符串请求参数直接转换成一个User实例 private User user; private User customer; private Date birth; //封装Action处理结果的tip属性 private String tip; publ…
JDBC链接Mysql Java2009-04-26 09:11 阅读18 评论0 字号: 大大 中中 小小 import java.sql.*;import java.util.*; public final class Mysql{ private Connection conn null;// private Statement st null; ArrayList res new ArrayList(); private Pre…
1---:java.lang.NoClassDefFoundError: org/apache/struts2/dojo/views/jsp/ui/HeadTag
解决办法:原因缺少了dojo的JAR包,引入即可:struts2-dojo-plugin-2.1.2.jar
(
The "head" tag renders required JavaScript code to configure Dojo a…
下面是根据FxCop整理的.NET代码编写规范,仅供参考。
一、 Design(设计)
1. Abstract types should not have constructors
抽象类不应该声明构造方法
2. Assemblies should have valid strong names
程序集应该具有强名称
3. Avoid empty i…
现象:
SQL> sys/oracleorcl as sysdbaORA-01031 无效权限
解决办法:
查看参数,判断远程登录密码文件的状态:
SQL> show parameter password
NAME TYPE VALUE----------------------…
public void reset(ActionMapping mapping, HttpServletRequest request) { String id request.getParameter("id"); ComJob job new ComJob(); ComJobDAO jobdao new ComJobDAO(); if (idnull||id""){ this.setComputer("一般");…
Android打包上传市场时,报错 attribute: attribute is not a string value 后来发现是因为values下的string文件和values-zh下的string没有对应好,有的字符串其中一个有,另一个文件又没有,可能就会出现这种问题。可以用以下java文…
每一次选出的数不重复
procedure TfrmMain.RandomGel6; var Int36 array[1..36]of integer; i,j,Num:integer; SL:string; tmp: Integer; begin Randomize; for i:1 to 36 do Int36 : i; Num:36; for i : 1 to 7 do begin tmp : 1Random(Nu…
题目
Given two strings representing two complex numbers.
You need to return a string representing their multiplication. Note i2 -1 according to the definition.
Example 1:
Input: "11i", "11i"
Output: "02i"
Explanation: …
Given a string containing only digits, restore it by returning all possible valid IP address combinations.
For example: Given "25525511135",
return ["255.255.11.135", "255.255.111.35"]. (Order does not matter)
难度系数&…
Date--->Timestamp
public String getCurrentTime(){ Date date new Date(); //format对象是用来以指定的时间格式格式化时间的 SimpleDateFormat form new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //时间格式,这里的格式可以自己…
一篇别人实践过的Protocol Buffers的东东。 转自: http://blog.in88.com/2011/03/protobuf/ Google protocol buffers – a language-neutral, platform-neutral, extensible way of serializing structured data.Google的定义是:用于序列化结构化的数据的跨语言、跨…
//内部匿名类例子//接口interface Contents{int i111;int value();}//类class Parce{//返回类型是Contents接口的类型public Contents cont(){//在返回上new一个无名对象return new Contents(){ private int i11; public int value() { return i; }}; //必须加上分…
公司要用Displaytag控制页面表格,特学习一下: Display Tag Lib是一个标签库,用来处理jsp网页上的Table,功能非常强,可以对的Table进行分页、数据导出、分组、对列排序等等,反正我在做项目时需要的功能它都给…
string中的push_back()和append()函数都是向string的结尾插入,但push_bach()只能插入单个字符char,而append可以插入string。 【举例】
#include <iostream>
#include <string>using namespace std;int main()
{string s1 "I am a st…
getServletContext().getResource()引发的错误
tomcat4.1: /** * Return a URL object of a resource that is mapped to the * specified context-relative path. * * param path Context-relative path of the desired resource * * exception Malf…
— 作者 wonder 14:41 BigDecimal bd1 new BigDecimal("840.9");BigDecimal bd2 new BigDecimal("12");//在创建BigDecimal时应该使用String或int,不能使用doubleBigDecimal bd3 new BigDecimal(new Double(840.9).toString());System.out…
在2009年的JavaOne大会上,Joshua Bloch和Neal Gafter又为我们带来的7道谜题,挺有意思的。大家不妨看看。摘自:Return of the Puzzlers: Schlock and AweJoshua Bloch, Google, Inc.; Neal Gafter, Microsofthttp://developers.sun.com/learni…
要求在一列以及这列表头上加上多选框并在一列上加上链接: 装饰器类(多选框):
需要DisplaytagColumnDecoratorl类:
/** * 用于丰富displaytag列显示的功能,在表格中显示一列checkbox */ public class Chec…
XML Schema 和DTD一样也是一种用于定义和描述XML文档结构与内容的模式语言,出现的原因是克服DTD的局限性,比如XML并不能很好的实现应用程序的不同模块间的相互协调,缺乏对文档结构、属性、数据类型等约束的足够描述的等,而且Schem…
转自:http://www.cnblogs.com/welkinwalker/archive/2010/05/11/1732622.html 几句话道出map和hash_map的区别 1. STL map is an associative array where keys are stored in sorted order using balanced trees. While hash_map is a hashed associated container…
java 注解的几大作用及使用方法详解(完) Posted on 2012-8-31, 16:19, by tmser, under java 总结.java 注解,从名字上看是注释,解释。但功能却不仅仅是注释那么简单。注解(Annotation) 为我们在代码中添加…
创建C#控制台项目.首先引用system.oracle.dll,然后在类文件中键入如下代码:
using System;using System.Collections.Generic;using System.Text;using System.Data;using System.Data.OracleClient;
namespace ConnectOracle{ class Program { static void Mai…
SAX应用之org.xml.sax.ContentHandler2007/05/11 10:52SAX是SIMPLE API FOR XML的缩写,它并不是由W3C官方所提出的标准,可以说是"民间"的事实标准。实际上,它是一种社区性质的讨论产物。虽然如此,在XML中对SAX的应用丝毫…
抱歉,来源忘记了。。package sanpai.db;
import java.io.*;import java.sql.*;import java.util.*;import java.util.Date;
/** * This class is a Singleton that provides access to one or many * connection pools defined in a Property file. A client gets…
通过ADSI管理 Internet Information Server 邓振波 活动目录是集成在Windows2000的目录服务。活动目录类似数据库。用户可以向活动目录添加或者清除项目,并且在大多数情况下面,活动目录中的项目是持久的。虽然活动目录类似数据库,但是&#x…
转自http://www.opennms.org/index.php/SNMP_Informant_How-ToFrom OpenNMS People using OpenNMS often wonder how to get SNMP information, such as traps and OIDs for data collection, into OpenNMS. Recently, I did a rather complete examination of the SNMP-Infor…
前言:api裸奔时代已结束,企业级高可用api设防腾讯sign设计与实现。。。
设计起来就是头冷。。。
有三个关键点:接口参数加密时效性验证私钥
首先定义几个参数:
int age 0;String app_id "123";String name &qu…
Number类: Java中为每个内置数据类型定义了封装类: Integer Long Byte Double Float Short 这些类都是抽象类Number的子类 示例: Integer m 10; Integer n 20; System.out.println(mn); Number类的类型转换方法…
String 对象可谓再熟悉不过了,与此相关的面试题经常会引出内存性能优化的问题,本篇主要以new String(“123”)创建了几个对象为例记录。 一、你能回答正确吗
String a "123";如上定义的为常量;
String b a "456";如上…
1. JBOSS的安装和运行
a. 安装JDK,设定环境变量JAVA_HOME“java安装目录”,比如JDK安装在D:/jdk16u10,那么就可以JAVA_HOMED:/jdk16u10。
b. 从http://www.jboss.org 下载最新的jboss版本,比如jboss-5.0.0.GA-jdk6.zipÿ…
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring.
实现: class Solution {
public:
void getPalindrome(string& s, int…
发信人: Mars (FangQ), 信区: MathTools标 题: Compact Fortran 95 Language Summary [ZZ]发信站: 达摩BigGreen BBS (Thu Dec 12 02:42:06 2002), 站内信件
Compact Fortran 95 Language Summary This summary was extracted from various sources. It is not intended to…
原文地址为:
用JAVA把两个时间相减import java.util.Date; import com.ibm.icu.text.SimpleDateFormat; public class mss { public mss() { } public long fromDateStringToLong(String inVal) { //此方法计算时间毫秒 Date date null; //定义时间类型 …
引用问题: Java代码 String s new String("xyz"); 创建了几个String Object?答案:两个(一个是“xyz”,一个是指向“xyz”的引用对象s)据说这是《java面试宝典》上的一道题,对java不熟悉的朋友可能就被唬住了…
1.应用举例 substring方法,例如s"abcdef" s.substring(2,5)结果为cde,长度为endindex-beginindex 2.实现原理 /**
* Returns a new string that is a substring of this string. The
* substring begins at the specified <code>beginI…
学习了一下JNI,发表文章的时候不知道该选什么好了,不知道JNI应该属于那个范畴^_^。1. 简介JNI是Java Native Interface的缩写,它的设计目的是: The standard Java class library may not support the platform…
/*delete add find */
public class ArrayTest {/*** param args*//*定义数组大小*/private static int COUNT40;public static int[] arrnew int[COUNT];/*定义当前数组的个数,为了和下标统一,以0开头*/private int currentNumber0;public ArrayTest(){…
if you need a socket, you have two options: 1.Instantiate QTcpSocket or QUdpSocket //实例化
2.Create a native socket descriptor, instantiate QAbstractSocket, and call setSocketDescriptor() to wrap the native socket.
Internally 1.在内部,内存 i…
import java.net.*;
import java.io.*;
public class test
{public static void main(String[] args){URL url null;URLConnection urlCon;InputStream inStream;//你只需判断这个变量值 .try{url new URL("http","www13.kaxiu.com",80,"modules/9…
只实现最简单功能,自动生成setter,getter当bean中属性较多时可以节省时间:Usage: java JavaBeanMaker aaa.txt bbb1. aaa.txt is the text file in following style,you can get a example--jeru.txt in attachmentint idString nameint age2 bbb is the file name of your ja…
LINQ是什么?它是Language Integrated Query。当我们要对数据库表进行查询的时候,我们一定会编写"select * from sometable where ID .."的语句。好,那我们现在根据LINQ的语法,完全可以将我们熟悉的SQL中像"select…
多个班级对应一个年级表 schoolclass id name grade_id
grade id name
实体bean Grade.java
package my.bean;public class Schoolclass implements java.io.Serializable {private long id;private String name;private Grade grade;public Schoolclass() {}pu…
using System.IO;using System.Management;public class BindFiles{private TreeView treeView1;public BindFiles(TreeView tree){treeView1 tree;}//绑定treeViewpublic void GetTreeNode(){this.treeView1.Nodes.Clear();SelectQuery selectQuery
new SelectQuery("…
相关表cm_css(id b c font1 title)
cm_txt( id title money url alt yds okok otype tfl display addtime)文字广告,标题title,文本alt,网址url
username (id Username Psw txt_xs) 计数
txtad.jsp
<% page language"java" import"java.util.*,java.m…
IoC(Inversion of Control,以下译为控制反转)随着Java社区中轻量级容器(Lightweight Contianer)的推广而越来越为大家耳熟能详。在此,我不想再多费唇舌来解释“什么是控制反转”和“为什么需要控制反转”。因为互联网上…
这个我这里自己一直用的几个函数,下面贴出来。 希望尽量不是直接要实例就去用,而不关心他本来的意义和实现思路等。加油!
using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpression…
import java.io.*;
public class KeyinTest
{public static void main(String[] args) {BufferedReader br null;try{//将system.in对象转换成Reader对象InputStreamReader reader new InputStreamReader(System.in);//将普通Reader包装成Buffereaderbr new BufferedReader…
配置NHibernate有三种常见的配置方法。 1:在web.config,App.config里面配置 <?xml version"1.0" encoding"utf-8" ?><configuration><!-- Add this element --><configSections><sectionname"hibernate-conf…
分页加排序的存储过程:view plaincopy to clipboardprint?--得到总记录数 if exists(select 1 from sys.objects where name GetProductsCount and type P) drop proc GetProductsCount go CREATE PROCEDURE GetProductsCount as select count(*) from produc…
import java.io.*;
public class FileInputStreamTest
{public static void main(String[] args) throws IOException{//创建字节输入流FileInputStream fis new FileInputStream("FileInputStreamTest.java");//创建一个长度为1024的竹筒byte[] bbuf new byte[102…
import java.io.*;
public class FileTest
{public static void main(String[] args) throws IOException{//以当前路径来创建一个File对象File file new File(".");//直接获取文件名,输出一点System.out.println(file.getName());//获取相对路径的父路径可能出错,…
遇到问题:在使用xhr发出请求时,请求的url中参数带中文,这时在后台解析request得不到中文如:request new ActiveXObject("Microsoft.XMLHTTP");request.open("GET", url);中我的url需要带中文参数直接加参数是…
一、AS3的XML相关类只有两个了:一个XML、一个XMLList,AS2时代的XMLNode已经被完全抛弃
二、记住以下术语: 简单内容XML(simplecontent),指没有子节点的XML。以下示例是一个简单内容XML: var xm…
String类提供了方法来操作String的值。然后,由于String对象是不可变的,操作的结果总是一个新的String对象。 如下是一些有用的方法
public char charAt(int index)
返回指定索引的字符。例如,如下的代码返回‘J’
"Java is cool".charAt(0) public String conca…
JS常用方法 以下为web开发中常用到的js方法;收集并整理出来;简单的就不写出来了 1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2<HTML> 3<HEAD> 4<TITLE> New Document </TITLE> 5&…
转自:http://hi.baidu.com/boyshen/blog/item/35dd6b25cb29d527d507426e.html
1、关于tr
通过使用 tr,您可以非常容易地实现 sed 的许多最基本功能。您可以将 tr 看作为 sed 的(极其)简化的变体:它可以用一个字符来…
此示例代码演示如何在LINQ to XML时捕获异常信息。示例代码此代码是调用XElement.Parse()方法分析所提供的XML字符串,但是因为此XML字符串中的开始标记<Contacts>和结束标记</Contcts>不是一致的,因此产生了分析异常。using System;using Sy…
Tomcat 5.0.19 之后,解决中文传递参数时,就必须考虑是使用 GET or POST,两种解决的方式不一样。 如果是使用 GET 的方式传递时,使用 1) 打开tomcat的server.xml文件,找到 <Connector/> 区块&…
Exam1 (Java)
Question 1:
Given:
1 public class Test{
2 public static void main(String args[]){
3 class Foo{
4 public int i3;}
5 Object o (Object)new Foo();//类型转换变成object
6 Foo foo (Foo)o;
7 System.out.println("i"foo.i);}}
what …
再上一篇文章
[框架那点事儿-快速开发季]编写自己的数据持久层(2)
主要讲了针对于查询API的实现,其中包括三个API: // 查询单个对象
public Object queryForObject
//查询对象列表
public List queryForObjectList
//查询对…
JDK8 前后的 Date 日期时间 API 每博一文案
师父说:人只要活在世界上,就会有很多的烦恼,痛苦或是快乐,取决于逆的内心,只要心里拥有温暖灿烂的阳光,
那么悲伤又有什么好畏惧的呢?
人生如行路&a…
if (NetworkInterface.GetIsNetworkAvailable()){String ipv4Address "";NetworkInterface[] nic NetworkInterface.GetAllNetworkInterfaces();for (int i 0; i < nic.Length; i){if (NetworkInterfaceType.Ethernet nic[i].NetworkInterfaceType){//获取物理…
程序使用 HTTP 协议和服务器交互主要是进行数据的提交,通常数据的提交是通过 GET 和 POST 两种方式来完成,下面对这两种方式进行一下说明: 1. GET 方式。 GET 方式通过在网络地址附加参数来完成数据的提交,比如在地址 http://www…
<% Import NameSpace"System.Net" %>
<script language"VB" runat"server">
Sub Page_Load(Sender As Object, E As EventArgs)
下面首先将新浪网站首页数据下载到字符串strTemp中
Dim wc As New WebClient()
Dim strTemp As String…
1、string类型
用于表示0或多个16位Unicode字符组成的字符序列,即字符串
字符串可以由双引号(")或单引号()表示,
var firstName"Jack";
var lastNameAmy;上述代码的两种表现形式都是有效的…
视频演示:http://u.115.com/file/f28ae6dc98
重点介绍所谓字段引用和属性引用,实际上是LINQ to SQL的映射关系中,实体类对象获取关联对象时所使用的类成员是字段,还是属性.如果是属性,就说它是属性引用;如…
这是前文《N层研习记录01:试图通过Boolean参数控制并发冲突的检查方式(LINQ to SQL)》用到的测试代码。只是包含了其中最重要的部分,如果要想获取完整的代码,可以通过以下地址进行下载:下载地址1:http://download.csdn…
假设我们已经有啤酒与威士忌两个模块: module Beer struct type t BEER let pour () let () Printf.printf "... a nice head ... " in BEER let consume t Printf.printf "Ha! Nothing like a good beer to quench the th…
题意
给定n个字符串,求这n个字符串中有多少个不同的。
思路
肯定不能N^2比啊。我们可以把每个字符串hash为一个数字,然后判重即可。
这里用的是最常见的进制哈希。
#include<bits/stdc.h>
using namespace std;
typedef unsigned long long u…
Android google map的应用有:
1.我的位置:在地图上显示你的当前位置(通常在1000米范围内)。即使没有GPS,你也可以确定自己的位置。Google手机地图还支持内在GPS,也可以链接到蓝牙GPS传感器,以便更加准确定…
C string类模拟实现 上一篇讲解了string的使用,当然少不了string的模拟实现实现啦!这里依然是讲解常用接口的模拟实现,话不多说,下面正文直接开始! 文章目录: C string类模拟实现1. 成员变量2. 默认成员函数…
在2009年的JavaOne大会上,Joshua Bloch和Neal Gafter又为我们带来的7道谜题,挺有意思的。大家不妨看看。 摘自: Return of the Puzzlers: Schlock and Awe Joshua Bloch, Google, Inc.; Neal Gafter, Microsoft http://developers.sun.co…
DBOperator
public int type_level(int id) { int flag-1;//此菜单禁用了 String hql"from Source_type where id"id; Source_type typenew Source_type(); String level""; List list this.findSQLHibernate(hql, 1); if(list.size()>0) …
做java的出现乱码一定很头痛,有时转一码即可,但有时,就不知道该如何来转,我的办法就是挨个试,如下: System.out.println("**>>" new String(rtn.getBytes("UTF-8"), "GB23…
一、简介线程池类为 java.util.concurrent.ThreadPoolExecutor,常用构造方法为:
ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue workQueue, RejectedExecutionHandler handler)
coreP…
创建操作日志字典 -------------------------------------------------------------Susue--------- 如表已存在,先删除--if exists(select 1 from sysobjects where nameS_LOG and XtypeU) drop table S_LOG ;go--------- 建新表和主键create table S_LOG ( P_ID int IDENTIT…
Hibernate 可以实现分页查询,例如: 从第2万条开始取出100条记录 Query q session.createQuery("from Cat as c"); q.setFirstResult(20000); q.setMaxResults(100); List l q.list(); 那么Hibernate底层如何实现分页的呢?实际上H…
当一个父类实现Serializable接口后,他的子类都将自动的实现序列化。 以下验证了这一点: package Serial;import java.io.Serializable; public class SuperC implements Serializable {//父类实现了序列化 int supervalue; public SuperC(int superv…
今天来学习一下String类的源码,首先看一下String类,
public final class Stringimplements java.io.Serializable, Comparable<String>, CharSequence从String类的定义我们可以看出,该类是final修饰的不可变的类,它实现了序…
Display Tag Lib是一个标签库,用来处理JSP网页上的Table,功能非常强,可以对的Table进行分页、数据导出、分组、对列排序等等,反正我在做项目时需要的功能它都给我提供了,而且使用起来非常的方便。能够大大减少代码量。…
Object类是所有类的超类,也就是说,Java中的每一个类都是由Object扩展而来的.因而每当你创建一个对象,它都将拥有Object类中的全部方法.让我们先来看看java.lang.Object的中的主要方法有哪些:
public class Object{
//公共构造函数
public Object();
//公共实例方法
public bool…
JDK6的新特性之五:轻量级Http Server JDK6提供了一个简单的Http Server API,据此我们可以构建自己的嵌入式Http Server,它支持Http和Https协议,提供了HTTP1.1的部分实现,没有被实现的那部分可以通过扩展已有的Http Server API来实现,程序员必须自己实现HttpHandler接…
这篇文章很好,包括5部分,但在网上只找到了第一部分的中文版,只有自己一点一点翻译。本人英语不好,所以将原文也贴上来,翻译不通顺的地方请大家参考。 In this second part of the tutorial on how to build a Sencha T…
JS自带函数 concat 将两个或多个字符的文本组合起来,返回一个新的字符串。 var a "hello"; var b ",world"; var c a.concat(b); alert(c); //c "hello,world" indexOf 返回字符串中一个子串第一处出现的索引(从左到右…
<?phpclass User{public $name;public $id;function __construct(){$this->id uniqid(); //give user a unique ID 赋予一个不同的ID}function __sleep(){ return(array("name")); //do not serialize this->name 不串行化name}functio…
public class Test {public static void main(String[] args) {String a "-1";Pattern p Pattern.compile("[0-9]*|-[0-9]*");Matcher m p.matcher(a);boolean b m.matches();System.out.println(b);}
}
判断是否是多个整数或负数
public static void main(String[] args) { // 将字符转换为ascii char ya; int x (int)y; System.out.println(x); // 将ascii转换为字符 int z 29; char m (char)z; System.out.println(m); }
import java.awt.*; //导入类 import java.awt.image.*; import java.util.*; import javax.imageio.*; //定义类 public class VerifyCode { static Random r new Random();//随机产生一个数字 static String ssource "ABCDEFGHIJKLM…
字符串判空在使用时用到的非常多,我们可以把该判断方法抽象成一个工具类 /***类名称:StringUtil*创建时间:2018年3月22日上午10:23:56*/
public class StringUtil {//判断字符串非空(2个条件)://1.引用非空…
public class TestCmd { public TestCmd(){} public static void main(String args[]){ try {//登录网站 Process process Runtime.getRuntime().exec("cmd.exe /c start http://www.hao123.net/"); //调用Ping命令 Process proce…
String类不可变和可变字符序列区别_字符串比较 String类对象代表不可变的Unicode字符序列,因此我们可以将String对象称为“不可变对象”。也就是指对象内部成员变量的值无法再改变,
public class TestString{public static void main(String []args){St…
判断一个日期是否是当前日期之前的日期 代码实现: public static boolean afterDate(String dateStr){boolean flag false;Date nowDate new Date();Date beforeDate null;SimpleDateFormat sdf new SimpleDateFormat("yyyy-MM-dd", Locale.CHINA);//…
import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner s new Scanner(System.in);String str s.nextLine();StringBuffer sb new StringBuffer(str);System.out.println(sb.reverse());}}
从名字上看出来,EnumMap是为枚举类服务的,它的key不能为null,在创建它的时候,必须要指定一个枚举类,如:EnumMap enumMap new EnumMap(Season.class);
下面示范它的用法public enum Season
{SPRING,SUMMER,FALL,WINTER…
Java的接口和C#一样,是interface关键字,但可以包含的成员不同
C# 的接口只能包含方法签名,Java的接口确可以包含属性(必须是常量),还可以在接口中定义内部接口package test; public interface A { public void getA()throws AException; public static interface B{…
Java中如果在定义方法时,在最后一个形参的类型后增加三点(...),表明形参可以接受多个参数值,多个参数值被当成数组传入public class Varargs
{//定义了形参长度可变的方法public static void test(int a, String... Books){//books被当成数组处理for(S…
在Java 中方法参数只有值传递,没有引用传递,像C#中 method(ref value....) 这种传引用参数的做法是不被支持的public class StringTest { public int i1; public StringTest(int i){ this.ii; } public static void st(int in,StringTest st1,Strin…
public class ReturnThis
{public int age;public ReturnThis grow(){age;//return this,返回调用该方法的对象return this;}public static void main(String[] args) {ReturnThis rt new ReturnThis();//可以连续调用同一个方法rt.grow().grow().grow();System.out.println(…
//修改的代码单无 cxcustomdata
function TcxDataControllerSearch.Locate(AItemIndex: Integer; const ASubText: string): Boolean;
begin//.........//增加以下代码 if (ByteType(ASubText,1)<>mbSingleByte) and not Result then //shj add输入的半个中文时 D…
procedure TForm1.Button1Click(Sender: TObject);var i:integer;begin adoquery1.Open ; cxgrid1dbtableview1.DataController.CreateAllItems ;// 根据打开的数据源自动生成column for i:0 to cxgrid1dbtableview1.ColumnCount -1 do begin //showmessage(…
取年月日并连成字符串import java.util.Calendar;Calendar CD Calendar.getInstance();int YY CD.get(Calendar.YEAR) ;int MM CD.get(Calendar.MONTH)1;int DD CD.get(Calendar.DATE);int HH CD.get(Calendar.HOUR);int NN CD.get(Calendar.MINUTE);int SS CD.get(Cale…
adshost表
id,Username,Password,Site_name,Site_URL,Site_type,Site_desc,Linkname,Email,QQ,MSN,Phone,Company,Address,Postal,Fax
以下是原sql语句.
if exists (select * from dbo.sysobjects where id object_id(N[dbo].[Adshost]) and OBJECTPROPERTY(id, NIsUserTab…
using System;
using System.Text;
using System.IO;
using System.Security.Cryptography;/// <summary>
/// 字符串加密、解密类,利用DES算法
/// </summary>
public class myEncrypt
{private static byte[] key new byte[] { 0x01, 0x02, 0x03, 0x…
1.学习目标还是学习compenent的用法,上节实现了简单字段的组合,这节中将讨论两个问题:1.依赖对象有一个指向容器对象的引用。2。集合依赖
2.开发环境和必要准备开发环境为:windows 2003,Visual studio .Net 2005,Sql server 2005 developer e…
LINQ是什么?它是Language Integrated Query。当我们要对数据库表进行查询的时候,我们一定会编写 "select * from sometable where ID .."的语句。好,那我们现在根据LINQ的语法,完全可以将我们熟悉的SQL中像"selec…
import java.io.*;
public class convertToPrintString{ //输入小写转大写,输入大写转小写 public static void main(String[] args) throws IOException { InputStreamReader reader new InputStreamReader(System.in); BufferedRead…
/**************************创建XMLHttpRequest对象**************************/function CreateRequest(){var xmlObj null;try {xmlObj new XMLHttpRequest();}catch(e){try{xmlObj new ActiveXObject("MSXML2.XMLHTTP");}catch(e2){try{xmlObj new ActiveXOb…
where 11有什么用?在SQL语言中,写这么一句话就跟没写一样。 select * from table1 where 11与select * from table1完全没有区别,甚至还有其他许多写法,1<>2,aa,a<>b,其目的就只有一个…
转自:http://www.sgoldcn.com/simple/?t1876.html
PE 文件所有使用的 resource table 非常复杂,一个典型的 windows GUI 应用程序普遍都使用到了 7 个左右的资源。 1. windows 中的资源 在
WinUser.h
文件里定义了 windows 中所使用的全部资源&#…
public function decimal f_getrand (decimal ad_begin, decimal ad_end);
//*-----------------------------------------------------------------*///功能,获取两个数之间的随机数//返回值的精确度为两个数中最大精确度//为了使RAND是产生伪随机序列更随即,适当…
1,检查OCR/VOTING DISK状态 GDSZ-DCS-SV03C-RAC01:~ # /opt/oracrs/bin/ocrcheck Status of Oracle Cluster Registry is as follows : Version : 2 Total space (kbytes) : 524040 Used space (kbyt…
测试方法
private function Test():void
{ for(var j:int0;j<5;j) { trace("插入10000项"); var t1:int, t2:int; var i:int 0; var a:Array new Array(); var al:ArrayCollection new ArrayCollection(); var item:String; var v:Vector.<Str…
l TinyXML简介 TinyXML是目前非常流行的一款基于DOM模型的XML解析器,简单易用且小巧玲珑,非常适合存储简单数据,配置文件,对象序列化等数据量不是很大的操作,尤其适用于游戏开发,在Nebula2,CEGU…
问题 对一个string类型的字符串进行分割,得到各个子字符串。
方法 有多种方法可以达到这个目的,每个方法都有利弊,根据项目实际情况选择即可。
1. 使用istream_iterator
std::string text "Let me split this into words";std:…
pb的replace来用,pb的replace完善正常来说,在一个项目里都会写个全局replace函数,如下$PBExportHeader$gf_replace.srfglobal type gf_replace from function_objectend typeforward prototypesglobal function string gf_replace (ref strin…
标准:基本通话费是每分钟4角钱,不足一分钟的部分,按照1分钟计算;长途通话费是每6秒7分钱,不足6秒的部分按照6秒计算。整个长途通话费,由上述两项加起来。 public class MobileFee { public void calcFee(i…
资料” http://www.jianshu.com/p/3747466b71f9 //匹配6位顺增 String pattern "(?:0(?1)|1(?2)|2(?3)|3(?4)|4(?5)|5(?6)|6(?7)|7(?8)|8(?9)){5}\\d"; Pattern pa Pattern.compile(pattern); String mc "123456"; Matcher ma pa.matche…
/** * 读取文件指定行。 */public class ReadSelectedLine {// 读取文件指定行。 static void readAppointedLineNumber(File sourceFile, int lineNumber) throws IOException {FileReader in new FileReader(sourceFile);LineNumberReader reader new LineNumberRe…
进入vi的命令 vi filename :打开或新建文件,并将光标置于第一行首 vi n filename :打开文件,并将光标置于第n行首 vi filename :打开文件,并将光标置于最后一行首 vi /pattern filename:打开文件&…
对用户给定的字符串,依次打印出其中的每个字符。打印两个字符之间,有一定的时间间隔。
public class TypingWord { public static void printWordByWord(String sMsg,int iSleep) { int iLensMsg.length(); for(int i0;i<iLen;i) { Syste…
问题:[img]/XrssFile/2007-4/20/2007420124028243.jpg[/img]替换成<img src/XrssFile/2007-4/20/2007420124028243.jpg>
解决办法:
using System.Text.RegularExpressions;
chr new Regex("(/[img/])([ /S/t]*?)(/[//img/])",Regex…
1.Dynamic in-memory compilation
2.Generating Static Proxy Classes
3.java docs
4.Compile Java file (cannot run succ on my window xp with jdk 6)
在解决这个问题的步骤中,开始入手,我找到了不少相关的资料,…
select语句中只能使用sql函数对字段进行操作(链接sql server), select 字段1 from 表1 where 字段1.IndexOf("云")1; 这条语句不对的原因是indexof()函数不是sql函数,改成sql对应的函数就可以了。…
ORACLE函数大全(整理转帖修改) SQL中的单记录函数1.ASCII返回与指定的字符对应的十进制数;SQL> select ascii(A) A,ascii(a) a,ascii(0) zero,ascii( ) space from dual; A A ZERO SPACE--------- --------- --------- ---------65 97 48 322.CHR给出整数,返回对应的字符;SQ…
package org.apache.lucene.search;import java.io.Serializable;public class Sortimplements Serializable {/*** 按照文档得分排序*/public static final Sort RELEVANCE new Sort();/*** 按照文档被索引的先后顺序排序*/public static final Sort INDEXORDER new Sort(So…
安装Spring for Mongodb
Spring项目为方便对Mongodb的操作,建立了spring-data的子项目,地址在:
http://www.springsource.org/spring-data/mongodb,目前版本是1.0.0M2阶段,已支持对Mongodb的一系列基本操作。我们先从…
public class stringtest {public static void main(String[] args){String str "nbaskjnabsdjnbaio";int k 0;int a 0;while(a!-1){a str.indexOf("nba",a);if(a!-1){k;a3;}}System.out.println(k);}
}
此代码仍然是演示如何使用LINQ to XML的XDocument.Validate()方法根据指定的XSD验证XDocument内容的有效性。示例代码程序首先加载XSD和XML文档到内存,然后对其进行验证,第一次的验证成功地通过。紧接着,修改其中一个客户的编号,再…
问题的前提是要 从命令行输入两个整数!然后计算这两个整数的商和余数,并输出结果(注意:除数不允许为0)。其目的就是考察我们对main参数的了解!
我刚刚开始的代码是: import java.lang.*; public class WenTest{ public static v…
方法一:使用StringBuilder类的reverse()方法
public class Test { public static void main(String[] args) { String str"abc"; String restrnew StringBuilder(str).reverse().toString(); //使用StringBuilder类的…
public class Root { int a,b,c; double x1,x2; public Root(int i,int j,int k) { ai; bj; ck; x1(-bMath.sqrt(b*b-4*a*c))/(2*a); x2(-b-Math.sqrt(b*b-4*a*c))/(2*a); } public void showResult() { System.out.println("方程的系数为࿱…
所谓值传递,就是讲实际参数值的副本(复制品)传入方法内,而参数本身不会受到任何影响。 例如: public class PrimitiveTransferTest { public static void swap(int a ,int b) { int tempa; a b; btemp; System.out.pri…
response.setContentType("text/html;charsetgb2312");PrintWriter out response.getWriter();SmartUpload mySmartUpload new SmartUpload();String currentDirectoryPathnull;String savePath"E:/public_html/java_root/NETDISK/WebRoot/NET_SPACE/1/我的音…
Chain of Responsibility定義Chain of Responsibility(CoR) 是用一系列類別(classes)試圖處理一個請求request,這些類別之間是一個鬆散的耦合,唯一共同點是在他們之間傳遞request。 也就是說,來了一個請求,A類別先處理,如果沒有處理ÿ…
package Java.programming; //计算一个数的阶乘 public class JieCheng { public static void main(String args[]){ int number16; long result1; if((number<0)||(number>17)){ Syst…
Java代码 package ansj.sun.util; public class BitMap { private static final byte MAX 127; public static void main(String[] args) throws InterruptedException { int m 1578015112 ; BitMap hm new BitMap() ; …
什么是NoSql
NoSql,全称是 Not Only Sql,指的是非关系型的数据库。下一代数据库主要解决几个要点:非关系型的、分布式的、开源的、水平可扩展的。原始的目的是为了大规模web应用,这场运动开始于2009年初,通常特性应用如ÿ…
JS对象
JavaScript Array对象
Array对象用于在单个变量中储存多个值
创建Array对象的语法
var arr1 new Array(); // 创建空数组
var arr2 new Array(5); // 创建长度5
var arr2 new Array("8"); // 长度是1,[8]
var arr3 new Array(1,2,3,4,5,7); // 创建长…
〓〓〓〓〓〓〓〓〓〓OpenSqlServer函数相关定义声明等 StartPublic Conn As New ADODB.ConnectionPublic OpenSqlOK As BooleanPublic ShowSqlRsErr As Boolean〓〓〓〓〓〓〓〓〓〓OpenSqlServer函数相关定义声明等 End┏〓〓〓〓〓〓〓〓〓 OpenSqlServer,start 〓〓〓〓〓〓…
我在看Rust官网提供的例子是Mutex<u32>类型的实现方式,但是当我改成Mutex<String>类型想要修改他的值时,惊喜就出现了,无法编译通过,下面是的代码:
use std::sync::{Mutex, Arc};
use std::thread;fn mai…
JDBC部分终端进入mysql: mysql -u root回车终端进入oracle: telnet 192.168.0.23 然后sqlplus openlab/open123MySQL常用命令: show databases; use tableName; show tables;一、概述JDBCJDBC从物理结构上说就是Java语言访问数据库的一套接…
数据库驱动SUN公司为了简化、统一对数据库的操作,定义了一套Java操作数据库的规范,称之为JDBC。
JDBC全称为:Java Data Base Connectivity(java数据库连接),它主要由接口组成。由一些接口和类构成的API 组…
Candidate-Elimination算法是数据挖掘中的一种概念学习算法,部分解决Find-S的不足,可以输出所有与训练样本一致的概念,同时利用概念间偏序关系来指导搜索,其伪代码描述如下 Initialize Gto the set of most-general hypotheses in…
这题很简单,但由于审题不清WA了很多次,太不应该
Any non-alphabetical character should remain the same, and all alphabetical characters will be upper case.
即只要不是字母就不变,
如下写法错误
if(*it || *it ,) continue;
另外&…
这是从网上找的,感觉有用就放在这儿!
using System;using System.Collections;using System.Collections.Generic;using System.Reflection;using System.IO;using System.Net;using System.Text;namespace MyCsStudy{ class Program { //…
该文档主要是将以下两篇文档的内容copy到了一起:(1)"利用异常表处理 Linux 内核态缺页异常"http://www-128.ibm.com/developerworks/cn/linux/kernel/l-page/index.html;(2)"对用户/内核空间数据复制的实现和自己的理解"www.linuxfo…
RESideMenu是github上比较出名的一个开源库,主要是实现侧滑菜单,现在有三千多个star了。效果如下。 创建一个ResideLayout类,大佬们不要嫌多,直接粘贴就能用。 public class ResideLayout extends ViewGroup {private static fina…
//计算文件的MD5码 public static string GetFileMD5(string path) { string ret ""; FileStream fs new FileStream(path, FileMode.Open, FileAccess.Read); MD5CryptoServiceProvider md5 new MD5CryptoS…
在我开始设计系统的时候,我会花去很多事情去设计命名,因为好的命名和好的设计是分不开的。
In the beginning was the Word, and the Word was with God, and the Word was God太初有道。道与神同在,道就是神。 (约翰福音第一章,…
(一)
1、使用JdbcTemplate的execute()方法执行SQL语句 Java代码 jdbcTemplate.execute("CREATE TABLE USER (user_id integer, name varchar(100))"); jdbcTemplate.execute("CREATE TABLE USER (user_id integer, name varchar(100))…
版权声明:任何获得Matrix授权的网站,转载时请务必以超链接形式标明文章原始出处和作者信息及本声明作者:谈祥庆地址:http://www.matrix.org.cn/resource/article/43/43912_Jboss_EJB.html关键词: ejb web service jboss本文描述了如何在Jboss…
h1. 一个例子 请看下面的需求,假设有如下用户对象模型: Java代码 public interface User { public String getName(); public Date getRegisterDate(); public Customer getCustomer(); } public interface Customer { public String getId(); public St…
1. PHP可阅读随机字符串此代码将创建一个可阅读的字符串,使其更接近词典中的单词,实用且具有密码验证功能。/***************length - length of random string (must be a multiple of 2)**************/function readable_random_string($length 6){$…
本人在.Net下学习 XML 的过程中,对如何完成 XML 文档的读写操作进行了简单的总结,遂与大家分享。 这是一篇入门级别的文章,高手可以置之脑后,或高屋建瓴的指点一下,不胜感激! ^_^ 一 .Net框架中与XML有关的命名空间 …
在移植linux代码到 freebsd 系统时,出现各种错误。现将所有错误一一罗列下来,并给出相关的解决方案。
to_string is not a member of std
编辑如下文件 test.cpp
#include <string>
using namespace std;int main()
{string s std::to_string(…
Factory有两种理解方式,个人感觉不太一样,不知道哪种理解方式比较正确1、引入Factory Pattern的目的是为了封装类的实例化操作 public class Factory{ public static Sample creator(int which){ //getClass 产生Sample 一般可使用动态类装载装…
线程是一个和平台关系比较密切的概念,这里我们也不能看出它的具体实现,只能看一下它的表现了.
public class Thread implements Runnable
public final static int MIN_PRIORITY 1;public final static int NORM_PRIORITY 5;public final static int MAX_PRIORITY 10;//以…
package lmj.zdsoft.efforts.string;
/* * 判断字符串包含关系 及String一些用法 * */
public class xx { public static boolean getBoo(String str1, String str2) { boolean b false; if (str1.length() > str2.length()) { int i str1.indexOf(str2); if (i &…
如果想复用别人写的.net程序但手上只有一个编译过的EXE,那么方法之一是用Reflection(反射)。下面是一些例子,初次上手的人可以参考。
先假设我们要复用的第三方应用程序EXE是由下面的代码编译成的:
using System; …
转自http://www.why100000.com/_articles/show_a_article.asp?autoid76&tabtabWindows AD简介 Active Directory(以下简称AD)可以认为是一个大的层次结构数据库,集中存储的内容必须遵循AD当前所定义的Schema。我觉得AD中最重要的内容就是…
RTSP服务器处理客户端点播的基本流程 处理连接请求的基本流程:
l Step 1:与客户端建立RTSP连接(调用incomingConnectionHandler方法),创建ClientSession并关联fClientSocket与incomingRequestHandler(调用…
文章目录 一、题目二、题解 一、题目
1071. Greatest Common Divisor of Strings
For two strings s and t, we say “t divides s” if and only if s t … t (i.e., t is concatenated with itself one or more times).
Given two strings str1 and str2, return the l…
测试InputStream,读取一个中文文本,但发现在控制台上输出时,是乱码:
public class InputStream { public static void main(String[] args) { FileInputStream in null; int b; long num 0; try { //建立了一根管道,读取一个…
Linux 下 C 语言编程
原著:Rick McMullin 前言
Linux的发行版中包含了很多软件开发工具. 它们中的很多是用于 C 和 C应用程序开发的. 本文介绍了在 Linux 下能用于 C 应用程序开发和调试的工具. 本文的主旨是介绍如何在 Linux 下使用 C 编译器和其他 C 编程工具,…
提起面向对象我们就能想到类,对象,封装,继承,多态。在《javaScript高级程序设计》(人民邮电出版社,曹力、张欣译。英文名字是:Professional JavaScript for Web Developers)这本书中…
示例1: HelloWorld程序usingSystem;usingSystem.Runtime.InteropServices;classMyClass { [DllImport("User32.dll")] public static extern int MessageBox(int h, string m, string c, int type); public static int Main() { …
在谈到动态语言与静态语言的区别时,有一句很经典的话:Static typing when possible, dynamictyping when needed。Visual Basic支持后期绑定和动态标识符,因此完全可以按照对象的运行时类型进行操作。只是后期绑定或动态标识符缺乏对参数或返…
以下总结的内容来自于Coverity Prevent分析,SECURE_CODING 是Prevent中关于编码安全方面的一个检查器,是全球百万余开发人员从历史上的各种安全漏洞事件中总结出来的。 [VERY RISKY]. Use of "strcpy" has been known to cause a buffer over…
http://sarin.iteye.com/blog/603684/,感觉写的很好 先来看一个例子,代码如下: Java代码 public class Test { public static void main(String[] args) { String str "abc"; String str1 "abc…
// TstCStylStr.cpp : Defines the entry point for the console application.// 测试C风格的字符串(计算C风格字符串长度一定要算上终结符null) NY2009#include "stdafx.h"#include <stdio.h>#include <string.h>#include <io…
C语言提供了几个标准库函数,可以将任意类型(整型、长整型、浮点型等)的数字转换为字符串。以下是用itoa()函数将整数转 换为字符串的一个例子: # include <stdio.h> # include <stdlib.h> void main (void) { int num 100; cha…
On success, the total number of characters written is returned. This count does not include the additional null-character automatically appended at the end of the string.
成功返回写字符的总数,其中不包括结尾的null字符。On failure, a negative num…
int i 100;long l 2001;float f300.2;double d12345.119;char username[]"程佩君";char temp[200];char *buf;CString str;_variant_t v1;_bstr_t v2;
一、其它数据类型转换为字符串
短整型(int)itoa(i,temp,10);///将i转换为字符串放入temp中,最后一个数字表示十…
怎样将数字转换为字符串?C语言提供了几个标准库函数,可以将任意类型(整型、长整型、浮点型等)的数字转换为字符串。以下是用itoa()函数将整数转换为字符串的一个例子:
# include <stdio.h>
# include <stdlib.h>
int main ()
{ int num…
首先在Module项目下的ModuleController.vb
这个ModuleController类在生成时有一个空方法 Private Sub ExtendToolStrip()TODO: add new items to the ToolStrip in the Shell. See the UIExtensionSites collection in the WorkItem. End Sub
从名字看就知道是扩展工具栏&am…
关于MD5的C++源码,请参考我的另外一篇文章:MD5的C++源码 md5c.h: /* POINTER defines a generic pointer type */
typedef unsigned char * POINTER;/* UINT2 defines a two byte word */
//typedef unsigned short i…
<% page contentType"image/jpeg" import"java.awt.*,
java.awt.image.*,java.util.*,javax.imageio.*" %>
<%!
Color getRandColor(int fc,int bc){//给定范围获得随机颜色
Random random new Random();
if(fc>255) fc255;
if(bc>2…
axis2.war发布到tomcat的webapps下面 1server 下面这个java要放到src中.没有package public class HelloWorld{ public String getName(String name) { return "你好 " name; } public int add(int a,int b) { return ab; } }
把HelloWorld.class放…
type TMyClass class(TComponent) //自定义了一个对象 public aaa:string; end; //持久化到硬盘文件 var my:TMyClass; fs: TFileStream; begin my : TMyClass.Create(self); my.aaa : aaaaaaaaaaaaaaaaaaaaaaaaa; fs : TFileStream.Create(c:/test.txt, fmCreate); fs.Write…
一、数据传送指令1.通用数据传送指令MOV(Move)传送PUSH(Push onto the stack)进栈POP(Pop from the stack)出栈XCHG(Exchange)交换.MOV指令格式为: MOV DST,SRC执行的操作:(DST)&l…
1.英文编码 function Encode7bit(Src:String):String; var Dst:String; i:Integer; CurS,NextS:Byte; TStr:String; begin for i:1 to Length(Src) do begin //当前是字符按8位分组的第8位,无需编码(8个字符已缩短为7个ÿ…
很幸运,Java已经帮程序员做好了创建线程同步集合的工作,只消调用集合对应的同步方法就可以了
名称都是以这个形式出现,synchronizedXXXimport java.util.*;
public class TestSynchronized
{public static void main(String[] args) {//创建四个同步集合Collection c Collect…
首先自定义函数,IDE工具栏上,报表->报表属性->tab页中的"代码",在文本框中加入如下代码
Public Function ConvertValue(ByVal value As Object) As StringIf IsNothing(value) or Len(Trim(value))0 ThenReturn 0ElseReturn valueEnd IfEnd Functi…
1.从注册到现在有几天DBOperator的一个方法 public int getTime1ToTime2(String Time1) { String StrDateTime1; int iStrDate.indexOf("-"); String ip1StrDate.substring(0,i); StrDateStrDate.substring(i1,StrDate.length()); iStrDate.indexOf("-"…
今天因为客户需要,需要将多个WORD文档合并成为一个WORD文档。其中,对WORD文档的合并方式分两种形式:一是复制合并;一是插入合并,即将多个文档按照先后顺序合并到另一个文档中.代码如下:
using System;using System.Collections.Generic;usin…
解决C#中txt文档导入数据库时,中文显示乱码的问题 与前篇文章不同之处用红笔标记 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.…
一、需求 让每一次抽的数字是随机产生的,并且保证产生数字的过程中,上一次产生过了的数字不在继续出现。
二、代码演示 public static void main(String[] args) { Scanner in new Scanner(System.in); System.out.println("你要抽取多少个数字…
仅作为个人笔记、记录,可能会有错误,参考请慎重,欢迎指正讨论!
基本类型的包装类型的对象:
public class Test {public static void main(String[] args) {String string "冰墩墩";System.out.println(&q…
在内核调试时通常要输出一些信息,这些信息的输出通常由一些宏来控制,下面列举内核中用到的几个宏:
1.1 pr_debug
这个宏定义为:
#ifdef DEBUG
/* If you are writing a driver, please use dev_dbg instead */
#define pr…
在Microsoft Foundation Classes (MFC)中,CString是一个非常方便的类,用于处理C风格的字符串。有时,你可能需要在MFC的CString和C标准库中的std::string之间进行转换。下面是如何在两者之间进行转换的方法:
CString转std::string…
编程: p10252
题目
Given two strings of lowercase letters, a and b, print the longest string x of lowercase letters such that there is a permutation of x that is a subsequence of a and there is a permutation of x that is a subsequence of b.Input
Input le…
时间知识点
SimpleDateFormat 显示时间形式 simpleDateFormat.format(new Date());取得毫秒数 new Date().getTime();String(时间形式的) 转 dateDate dateformat.parse(Strdate); 表结构 testcount
id ip seetime num
int nvchar nvchar bigint
原程序count24ip.jsp
&l…
资源: 使用ajax页面(发送和响应);一个处理服务器页面;还使用了一个可重用net.js.1.html<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html> <head> <title>1.html</title> <script type"text/javas…
模板页modle.html<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns"http://www.w3.org/1999/xhtml"><head><meta http-equiv&quo…
1. 开发服务(Service)
(1)新建WCF服务应用程序
WCF是.NET3.0新增的,如果要在Visual Studio 2005下开发WCF应用程序,需要安装Visual Studio 2005 Extensions for WCF and WPF才可以支持。Visual Studio 20…
下面贴出使用迅雷下载的webThunderDetect.js源码:
function _xlThunderQtyPV(){try{vhref "http://analytics-union.xunlei.com/PV?peerid0&urihttp://thunderqtypv.union.xunlei.com&src" document.domain;image1 new Image(1,1);image1.srcvhref;} ca…
String thirdiddbo.nextID("7"); // thirdid为11,12,13,14,34,多了一个逗号,下面蓝色的部分是进行处理 String hqldown"from Source_inf where in ("thirdid.substring(0,(thirdid.length()-1))") order by neworders";
DBOperato…
早在1975年贝尔实验室的两位研究人员Alfred V. Aho 和Margaret J. Corasick就提出了以他们的名字命名的高效的匹配算法---AC算法。该算法几乎与KMP算法(http://blog.csdn.net/myjoying/article/details/7947119)同时问世。与KMP算法相同,AC算…
printf主要是继承了C语言的printf的一些特性,可以进行格式化输出 print就是一般的标准输出,但是不换行 println和print基本没什么差别,就是最后会换行 System.out.printf("the number is: d",t); 参照JAVA API的定义如下࿱…
LINQ to XML的XDocument.Validate()方法是用来验证XML文档是否有效的,此方法需要指定验证所需的XSD,而这可以通过XmlSchemaSet对象提供,XmlSchemaSet.Add()方法可以将指定的XSD加载到验证集中。这样就可以使用此XSD来验证XML内容的有效性了。…
此代码主要示范如何使用LINQ to XML的函数构造功能创建具有属性的元素。实际上是向XElement的构造函数添加XAttribute实例对象。示例代码此示例代码创建了一个名为Phone的元素,并且为此元素添加了2个属性:Type和Country。using System;using System.Coll…
很多时候我们需要知道Windows操作系统的版本,使用下面这个API函数可以做到。 Option Explicit Private Declare Function GetVersionEx Lib "kernel32" Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As Long Private Type O…
class SyncStack{ //同步堆栈类 private int index 0; //堆栈指针初始值为0 private char []buffer new char[6]; //堆栈有6个字符的空间 public synchronized void push(char c){ //加上互斥锁 while(index buffer.length){ //堆栈已满&#…
SQL> show parameter log_archive_dest_2
NAME TYPE VALUE------------------------------------ ---------- ------------------------------log_archive_dest_2 string serviceTEST valid_for(online_logfiles,primary_role) DB_UNIQUE_NAMEtest
看参数设置,…
二进制序列化的情况
在远程系统中,经常需要传输集合类型的数据结构,DataTable和IList<T>是比较常用的2种集合类型,下面对这2种数据类型的二进制序列化作一个测试
定义一个测试的类
using System;
using System.Collections.Generic…
最近解决一个获得gmail附件文件名字的问题, 由于打开gmail附件所获得的intent data 是Content://xxxx形式,而非常用的File://xxxx形式,所以不能直接用getIntent().getData()来获得文件名。研究了一下,最后发现用下面方法可以获得c…
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO;//引入命名空间 using System.Net;//引入命名空间
namespac…
视频演示:http://u.115.com/file/f223235faf演示重点说明在前一个演示中,我们通过使用两个一对多的关系建立了LINQ to SQL中的伪多对多关系,之所以称之为伪关系,只是表示它并非是真正意义上的多对多关系。然而,前面的做…
LINQ to XML中的XDocument是用来表示内存中的XML文档的。同样可以使用函数构造功能来创建此对象。此示例代码主要用来演示如何创建一个通用的XML文档。示例代码代码中创建的XDocument对象,包含了2个注释(XComment),1个处理指令(XProcessingInstrucation)…
LINQ to SQL支持以下String方法。但是不同的是默认情况下System.String 方法区分大小写。而SQL则不区分大小写。
1.字符串串联(String Concatenation)
var q from c in db.Customersselect new{c.CustomerID,Location c.City ", " c.Country};
语句描述&#x…
Order By操作
适用场景:对查询出的语句进行排序,比如按时间排序等等。
说明:按指定表达式对集合排序;延迟,:按指定表达式对集合排序;延迟,默认是升序,加上descending表…
上一篇讲述了LINQ,顺便说了一下Where操作,这篇开始我们继续说LINQ to SQL语句,目的让大家从语句的角度了解LINQ,LINQ包括LINQ to Objects、LINQ to DataSets、LINQ to SQL、LINQ to Entities、LINQ to XML,但是相对来说…
计算π的值。要求对比在n取值不同时,计算的结果在精度上的差异。不同的n取值情况,要使用多线程同时进行运算。
class MyCalcThread extends Thread { long iArg; public MyCalcThread(String s,long iTmp) { super(s); iArgiTmp; } public voi…
要求:使用String类提供的方法,返回结果存放到Vector的对象中。 import java.util.*; public class StringOP { //两个参数:第一个是操作对象,第二个是用来截断字符的分隔符 public Vector getInput(String sArg,char cSep) { …
SS-Code补充业务代码 1)SS-Code概念SS含义是:supplementary service,SS-Code :: OCTET STRING (SIZE (1))--This type is used to represent the code identifying a single-- supplementary service, a group of supplementary services, or-- all supplementary services. …
大致如下:
using System.Net;
using System.Net.Mail;
using System.Text;namespace Common.Web
{public class EmailHelper{#region Email配置//服务相关string Host "smtp.sina.net";//指定 smtp 服务器地址int Port 25;//指定 smtp 服务器的端口&am…
步骤1:
引入5个DLL到项目中
分别是
using Discuz.Common;using Discuz.Forum;using Discuz.Config;using Discuz.Entity;
using Discuz.Data; 步骤2: public class Discuz_NT { public static ArrayList Login(string username, string password…
public String[] split(String regex) {return split(regex, 0);
}
可以接受普通字符,也可以是正则表达式。 public String[] split(String regex, int limit) {/* fastpath if the regex is a(1)one-char String and this character is not one of theRegExs meta…
转换标准时间
public static string getSubDatetime(object obj) { string Result string.Empty; if (obj ! null) { DateTime dt; if (DateTime.TryParse(obj.ToString(), out dt)) { dt …
package excise; /*输入一行字符,分别统计出其中英文字母 、空格、数字的个数*/ import java.util.Scanner; public class T007 { public static void main(String args[]){ int num0,chartra0,blak0,other0; Scanner snew Scanner…
初始化一个接口 public class Api {public static final String BASE_PATH "https://api.tianapi.com";
}初始化Fresco的 public class MyApp extends Application{public static Context context;Overridepublic void onCreate() {super.onCreate();Fresco.initi…
/*img即你要获得图片的控件path即你要从网络上获取的图片destHight你要采样的图片高度deWeight你要采样的图片宽度*/
private void loadImage( ImageView img, String path, final int destHight, final int destWeight) {new AsyncTask<String, Void, Bitmap>() {Overri…
Truck History Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 12456 Accepted: 4713 题目链接:http://poj.org/problem?id1789
Description
Advanced Cargo Movement, Ltd.uses trucks of different types. Some trucks are used for vegetab…
//将图像保存在本地
String sdStatus Environment.getExternalStorageState();
if (!sdStatus.equals(Environment.MEDIA_MOUNTED)) { // 检测sd是否可用Log.i("TestFile", "SD card is not avaiable/writeable right now.");return;
} …
GetDiskFreeSpaceEx VB声明 Declare Function GetDiskFreeSpaceEx Lib "kernel32" Alias "GetDiskFreeSpaceExA" (ByVal lpRootPathName As String, lpFreeBytesAvailableToCaller As LARGE_INTEGER, lpTotalNumberOfBytes As LARGE_INTEGER, lpTo…
1. 题目 Given a string s consists of upper/lower-case alphabets and empty space characters ’ ‘, return the length of last word in the string. If the last word does not exist, return 0. Note: A word is defined as a character sequence consists of non-space…
1. 问题 Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-negative. 2. 思路
大整数乘法思路,实现竖式乘法运算即可。
3. 实现
class Solution {
public…
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for “abcabcbb” is “abc”, which the length is 3. For “bbbbb” the longest substring is “b”, with the l…
这个问题是用递规与分治策略,找出数组中最大元素的位置。就问题本身而言,很简单,并且有很多种更高效的实现方法,本文意在介绍递规与分治的思想。
源代码:
/***用分治法找出数组中最大元素的位置*/public class MaxPos…
原著:Rick McMullin前言Linux的发行版中包含了很多软件开发工具. 它们中的很多是用于 C 和 C应用程序开发的. 本文介绍了在 Linux 下能用于 C 应用程序开发和调试的工具. 本文的主旨是介绍如何在 Linux 下使用 C 编译器和其他 C 编程工具, 而非 C 语言编程的教程. 在…
C 语言编程 原著: Rick McMullin 前言 本文译自《Slackware Linux Unleashed》(第三版) 一书的第27章: Programming in C. 关于本译文有任何的话请与我联系: mailto:connease.net.
Linux的发行版中包含了很多软件开发工具. 它们中的很多是用于 C 和 C应用程序开发的. 本…
最近研究了如何使得ASP.NET读取Excel文件更加高效呢,现总结如下:ASP.NET读取Excel文件方法一:采用OleDB读取Excel文件: 把Excel文件当做一个数据源来进行数据的读取操作,实例如下: public DataSet ExcelToD…
public class Jiaofen { public static void main(String args[]) { int i,j,k; int n0; for(i0;i<3;i) //五分的硬币最多2个 { for(j0;j<(10-5*i)/2;j) //2分的硬币的个数最多为(100-5i)/2 { …
Java里方法的参数传递方式只有一种:值传递。值传递,就是将实际参数值的副本(复制品)传入方法内,而参数本身不会受到任何影响。 public class PrimitiveTransferTest { public static void swap(int a,int b) { int tem…
java 泛型是java SE 1.5的新特性,泛型的本质是参数化类型,也就是说所操作的数据类型被指定为一个参数。这种参数类型可以用在类、接口和方法的创建中,分别称为泛型类、泛型接口、泛型方法。 泛型(Generic type 或者 generics&…
在网上看了许多能生成静态页的新闻系统,但基于asp.net的系统极少,闲下时间来自己写了一个,发出来,大家一起研究,代码没做什么优化,只是实现了功能 using System;using System.Collections;using System.Com…
一次性读入
using System; using System.IO; using System.Text; class FileRead1 { static void Main() { StreamReader sr new StreamReader( "readme.txt", Encoding.GetEncoding("Shift_JIS")); string text sr.ReadToEnd(); …
//在Java中使用MessageDigest实现MD5,SHA-1等加密import java.security.*;/** TestEncrypt.java* Description: A test progrm to encrypt a string using MD5 or SHA-1,etc.*/public class MessageEncrypt {public static String Encrypt(String strSrc, String en…
硬盘序列号是硬盘格式化时系统随机分配给硬盘的一组十六进制字符串,除分对硬盘重新进行格式化,硬盘序列号是不会改变的。所以,很多软件都会以硬盘序列号判断用户是否合法用户。以下是JAVA获取硬盘序列号的方法。 public static String getHdS…
下面是操作Collection举例,即List,Set,Queue都可以使用的方法import java.util.*;
public class TestCollection
{public static void main(String[] args) {Collection c new ArrayList();//添加元素c.add("苹果");//虽然集合里不能放基本类型值,但Java支持自动将…
public static int length(String value) {int valueLength 0;//判断value是否为空String chinese "[\u0391-\uFFE5]";/* 获取字段值的长度,如果含中文字符,则每个中文字符长度为2,否则为1 */for (int i 0; i < value.length…
原文地址为:
对List里的对象元素进行排序看了一下,好像有两种方法,第一个是实例化一个比较器,例子如下 public class Student { private int studentId; private String studentName; private int age; public St…
Just a remimber here:
对于Database Project,如果project的属性指定了deploy的数据库,并且已经deploy到真正的数据环境,如果下次在次deploy,那之前的deploy脚本会被覆盖,已经执行过的脚本不会再次被执行。 例如已经在…
public class HelloWorld
{public static void main(string[] args){System.out.println("Hello Java!");}
}
写一个HelloWorld.先创建一个文本文件名为HelloWorld.Java.这是源代码文件下一步骤就是编译此文件,生成字节码
在windows中cmd
cd 到 java文件路径
cd c:\U…
Linq to Xml: <?xml version"1.0" standalone"yes"?><Messages><!-- Common Error Message --><Message><MessageID>9</MessageID><MessageName>ExitApplicationConfirmation</MessageName><Message…
修改整理的一个通用类,用来操作oracle数据库 十分的方便,支持直接操作sql语句和Hash表操作.现在修补MIS我都用这个类,节约了大 量的代码与工作良!在老孙的指点下,偶将操作oracle,sql server ,access三种数据库的通用类集成在一起写了个数据抽象工厂,同时支持三种数据库无缝切换…
在脱离数据库的DataSet实现类似sql语句的查询
也就是select ... from tablename where ... 这样的功能:
将从DataSet中查询出来的数据以行的形式绑定到dataGridView1中DataSet ds new DataSet();ds.ReadXml("c://" dataset_name ".xml"); …
//采用BIFF8格式规范二进制流写入XLS文件 function TsycFunctionSet.sycExportDateToExcel(ASender: TDBGrid): Boolean; var arXlsBegin: array[0..5] of Word ; var arXlsEnd: array[0..1] of Word; var arXlsString: array[0..5] of Word; var arXlsNumber: array[0..4] of …
LINQ是Visual Studio 2008及其以后版本中提供的功能,将强大的查询扩展到C#和VB.NET语言语法之中。LINQ提供了标准、简单的模式来查询和更新数据,同时还允许程 序开发人员进行扩展,支持任何类型的数据存储。Visual Studio 2008包含了LINQ提供者…
在项目开发时,有时候可能会增加或修改新的数据库,比如,刚开始我们项目用SQL Server 数据库,但后来需要用Oracle 数据库,或者说在某些情况下需要用Oracle 来代替SQL Server 数据库,甚至两种情况会同时存在&a…
触发器 建一个触发器,应包含以下部分:触发器名字触发器触发事件: insert,delete,update激活时间: before,after粒度: for each statement,for each row过渡变量:old row:表示触发事件之前被修改的值:new row表示触发事件之后被修改的值old ta…
1001. String Reversion Total: 74 Accepted: 54 Time Limit: 1sec Memory Limit:256MB Description Given a valid identifier in C programs, please write a program to reverse it by respectively reversing each part separated by ‘_’. Input The first l…
delete()方法的使用:SQLiteDatabase db databaseHelper.getWritableDatabase();
db.delete("person", "personid<?", new String[]{"2"});
db.close();上面代码用于从person表中删除personid小于2的记录。update()方法的使用&am…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using System.IO; namespace Function { /// <summary> /// 将DataSet写成CSV文件 /// </summary> p…
1.String类的理解(以JDK8为例)
1.1类的声明
public final class String implements java.io.Serializable, Comparable, CharSequence
final: String是不能被继承的 Serializable: 可序列化的接口。凡是实现此接口的对象可以通…
1.暴力求解 string findLongestPalindrome(string &s)
{ int lengths.size();//字符串长度 int maxlength0;//最长回文字符串长度 int start;//最长回文字符串起始地址 for(int i0;i<length;i)//起始地址 for(int ji1;j<length;j)//结束地址 { int tmp1,tmp…
在国外一网站上看到一篇字符串和枚举类型之间的转换,贴出来给大家看下: 文章的源代码可以通过如下链接下载:源代码
Introduction
While adding Serialization support to my project, I realized that I would require some way to conve…
传送门:codeforces 883F 题目大意:
字符 u 和 oo 等价,字符 h 和 kh等价,问给出的 n 个字符串中不同的串有多少个。注意 kkkkh 是和 h 等价的,因为可以通过多步替换得到, ooo 的情况可以等价为 ou 或 uo。…
【题目大意】:告诉你左手骰子是the east face is 1, the north face is 2, and the down face is 3。右手是 the east face is 1, the north face is 2, and the up face is 3.给你一个骰子的情况,问是左手还是右手 【解题思路】:模拟 【代码…
题目 he basic task is simple: given N real numbers, you are supposed to calculate their average. But what makes it complicated is that some of the input numbers might not be legal. A legal input is a real number in [−1000,1000] and is accurate up to no mo…
Ehcache 1.5.0 User Guide - Code Samples代码实例1
Ehcache 1.5.0 用户指南) E_mail:jianglike18163.con Blog: http://blog.csdn.net/jianglike18 qq:29396597
8、Code Samples(代码实例) This page shows some of the more common cod…
String & char
String to char
String.toCharArray();//return char[]
String.charAt(index);//return charchar to String
String s String.valueOf(c);
String s String.valueOf(new char[] {c,h,i,n,a});
在系统的一览画面,我们有时候希望有的行的数据根据数据性质的不同而显示不同的颜色, Dinamica 默认只是处理的行的交叉色。
其他定制需要自己实现。
system win xp JP
Dinamica 2.1.4 with Ajax support.
正常的一览画面的显示部分,
…