直接指向网页[InternetShortcut]URL=http://user.qzone.qq.com/2275471603Modified=F00F43B3A875C601D9ShowCommand=7IconIndex=1IconFile=C:\WINDOWS\SYSTEM\url.dllHo...
using System;using System.IO;using
System.Security.Principal;using System.ComponentModel;using
System.Configuration;using System.Runtime.InteropServic...
分类:
Web程序 时间:
2014-05-05 22:58:48
阅读次数:
516
FPSDisplay.csusing UnityEngine;using
System.Collections; public class FPSDisplay : MonoBehaviour{ float deltaTime =
0.0f; void Update() { ...
分类:
其他好文 时间:
2014-05-05 22:05:23
阅读次数:
522
using UnityEngine;using System.Collections;public
class Test : MonoBehaviour { public GameObject anObject ; private Camera cam ;
private Plan...
分类:
其他好文 时间:
2014-05-05 22:00:12
阅读次数:
357
/**
* 设置窗体背景图片
* @author gao
*/
package com.gao;
import java.awt.Graphics;
import java.awt.Image;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class...
分类:
编程语言 时间:
2014-05-05 13:19:17
阅读次数:
350
1.CSS3 边框:通过 CSS3,能够创建圆角边框,向矩形添加阴影,使用图片来绘制边框,如border-radius;box-shadow;border-image
2.CSS3 背景:CSS3 包含多个新的背景属性,它们提供了对背景更强大的控制。background-size;background-origin
3.CSS3 文本效果:CSS3 包含多个新的文本特性。tex...
分类:
Web程序 时间:
2014-05-05 13:12:25
阅读次数:
437
ERROR:ORA-28002: the
password will expire within 7 days
错误是提示密码快过期了,有两个办法解决这个问题。
一. 修改已经报错用户的密码
已经被报告了密码快要过期的账户必须再改一次密码(需要DBA权限)
以system用户为例
sqlplus / as sysdba
alter user system identi...
分类:
数据库 时间:
2014-05-03 17:27:50
阅读次数:
460
package ioTest.io2;
import java.io.IOException;
import java.io.InputStream;
/*
*键盘录入:如果录入的是一行数据打印,如果录入了over就结束录入
*System.in:标准输入流对象
*System.out:标准输出流对象
*/
public class ReadIn {
public static v...
分类:
编程语言 时间:
2014-05-03 17:07:53
阅读次数:
268
计算诸如-123,456,789 + 123,123的值
import java.math.BigInteger;
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner cin = new Scanner(System.in);
String st...
分类:
编程语言 时间:
2014-05-03 16:50:55
阅读次数:
307
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For exa...
分类:
其他好文 时间:
2014-05-03 15:47:53
阅读次数:
289