- 浏览: 66744 次
- 性别:
- 来自: 北京
最新评论
-
wangmuchang:
javascript验证 -
gaogaf:
到了2.2这个方法就废了~~~~~
android 退出应用程序
文章列表
如果勾选了Use this as the default and do not ask again 下次要启动时不会再次显示修改工作空间的选择,
要改变工作空间的方法,有3中方法可以更改workspace的路径设置.
1. 启动Eclipse/MyEclipse后, 打开"Window -> Preferences -> General -> Workspace", 点Workspace页上的"Startup and Shutdown", 然后勾选"Startup and Shutdown"页中的"Pro ...
1、按灭 NmLk 灯(一般是FN+NUMLK),进入桌面后什么也别做,再重启试试
2、BIOS的设定中BIOS FEATUR里找到“Boot up NumLock Status”(启动时键盘上的数字锁定键的状态),选项:on(开)off(关)选择后按F10保存。
3、开始-运行-regedit,找到 HKEY_USERS\\.DEFAULT\\ControlPanel\\Keyboard,将InitialKeyboardIndicators 的键值改为“1”,退出注册表编辑器,重新启动计算机
oracle
- 博客分类:
- oracle定时备份
定时备份运用cron(linux自带的定时工具),可以在无需人工干预的情况下运行作业。
由于cron是linux的内置服务,所以它不自动启动,可以通过下面几种方式启动、关闭服务:
/sbin/service crond start //启动服务
/sbin/service crond stop //关闭服务
/sbin/service crond restart //重启服务
/sbin/service crond reload //重新载入配置
/sbin/service crond reload //查看服务状态
或者在/etc/rc.d/rc.local这个脚本的末尾加上: /sbi ...
注:此方法仅供给实在没办法才想要格机的朋友门。毕竟没什么大问题请不要格机。----A小子
很多人都不明白什么是格机....今天就发一下.....请看..::::
首先说明一下,与电脑的操作步骤不同,手机在格式化的同时会自动生成 ...
function move2(){
var content = document.getElementById("div");
//alert(content.offsetTop+"--"+document.documentElement.scrollTop);
var top =document.documentElement.scrollTop;
content.style.top=top+"px";
}
function move1(){
//鼠标滚动
documen ...
javascript的offsetLeft,offsetTop,scrillLeft,scrollTop,offsetWidth,offs...
一直以来对offsetLeft,offsetTop,scrollLeft,scrollTop这几个方法很迷糊,花了一天的时间好好的学习了一下.得出了以下的结果:
1.offsetTop :
当前对象到其上级层顶部的距离.
不能对其进行赋值.设置对象到页面顶部的距离请用style.top属性.
2.offsetLeft :
当前对象到其上级层左边的距离.
不能对其进行赋值.设置对象到页面左部的距离请用style.left属性.
3.o ...
<!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>
<title></title>
<script src="http://imwujianhao.blo ...
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
SAXParserFactory factory = SAXParserFactory.newInstance();
try {
XMLReader reader = factory.newSAXParser().getXMLReader();
reader.setContentHandler(new MyContentHandler());
FileReader fr = new FileRe ...
public class Dom4jMain {
/**
* @param args
*/
public static void main(String[] args) {
SAXReader reader = new SAXReader();
File file = new File("E:\\apache-tomcat\\webapps\\AAA\\resources.xml");
try {
Document doc = reader.read(file);
Element root = doc.getRootElement ...
想看看java中对文件的处理就编写了一小程序
输入路径和所要查询的特定字符串就可以查询出特定字符串所在的文件以及行号
不过一般在txt java jsp等文件中查询,word xml等文件中的中文现在还没法查询
//查询特定的字符串 并将包含该字符串的文件的信息保存到myFIles中
public void getSpecificStr(List<String> files, String specificStr){
for(String str: files){
File file = new File(str);
int lineNum = 0;
Fi ...
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class FindA{
public static void main(String args[])
throws Exception{
String candidate =
"A Matcher examines the results of applying a pattern.";
String regex = "\\ba\\w*\\b" ...
学习正则表达式,让编程更方便
输入框中只能输入1~6位数字<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>test.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv=& ...
Android Notification 基础工作学习 2010-06-27 17:42:36 阅读869 评论0 字号:大中小 订阅
在Android中,基本的Notification就是有事件发生的时候在屏幕顶端的Notification bar上显示一个图标。然后拉下Notification bar,点击Notification的项目,会调用相应的程序做处理。比如有新短信,就会出现短信的图标,拉下Notification bar,点击图标会调用短信查看程序。
我们先看一下Notification的Sample Code,然后逐行做解说,大致能了解它的基本构成。
...
假说有两个Activity, Activity1和Activity2, 1跳转到2,如果要在2退出程序,一般网上比较常见的说法是用System.exit()或是Android.os.Process.killProcess(android.os.Process.myPid()),但实际应用中,并不是能够真正退出,问题出在?1跳转到2时,如果Activity1你finish掉了,两么是可以退出程序的,但有时1跳转到2时,我们不能将Activity1 finish掉,那么在Activity2就不能退出程序。于是有更好的退出程序的方法,不管你有没有finish前一个activiy都可以退出程序,
...