Updating My Notepad_1.1

The old version Notepad 1.0 you can get it from below link :

My Notepad

I am very happy to announce that my Notepad was published at version 1.1.

============

New Future(s) :

============

1. Add PopupMenu to JtextArea 

Undo, Cut, Copy, Paste, Select All, Time/Date

Looking the snapshot about the new future(s):

UnSelected:

Selected Content:

Source Code Download : http://pan.baidu.com/s/1o6wU49k

========================================================

More reading,and english is important.

I‘m Hongten

E | [email protected]  B | http://www.cnblogs.com/hongten

========================================================

时间: 2024-10-23 13:42:05

Updating My Notepad_1.1的相关文章

mysql编译安装完成后,启动时报错The server quit without updating PID file

源码包下载: 编译安装: 设置配置文件: 添加启动脚本: 添加开机启动项: 完成后,/etc/init.d/mysqld start 时候报错如下: Starting MySQL..The server quit without updating PID file ( [FAILED] al/mysql/data/FrankTest01.pid). 1.防火墙SELINUX有没有关闭 2.3306端口有没有被占用   netstat -tulanp 3.是否有其他相关的mysqld进程在运行.

解决Linux下MySQL启动错误Starting MySQL.Manager of pid-file quit without updating file.[FAILED]

刚装完MySQL,启动时报如下错误: Starting MySQL.Manager of pid-file quit without updating file.[FAILED] 依次尝试了从谷歌找到的各种方法,发现只要执行如下MySQL初始化命令即可解决: /usr/local/mysql/bin/mysql_install_db --user=mysql 下面附上从谷歌找到的解决此问题的方法集锦,也许每个人遇到的问题的原因会不一样,经供参考: 一.查看报错日志 报错日志是我们解决问题的方向灯

开启mysql慢查询,重启提示Starting MySQL.The server quit without updating PID file

在my.cnf文件中加入: datadir = /usr/local/mysql/data long_query_time = 1 #记录下查询时间查过1秒. log-slow-queries = /usr/local/mysql/log/db-Test2-slow.log #日志目录. #log-queries-not-using-indexes #表示记录下没有使用索引的查询. 之后,重启mysql,提示: [[email protected] subsys]# service mysql 

svn: E155017: Checksum mismatch while updating 校验错误的解决方法

[10.3.53.53:/EMRCV5]# svn up svn: E155004: Working copy '/EMRCV5' locked. svn: E155004: '/EMRCV5' is already locked. svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details) [10.3.53.53:/EMRCV5]# svn cleanup [10.3.53.53:/EMRCV5]#

the server quit without updating pid file (/var/lib/mysql/localhost.localdomain.pid)

前几天装的mysql,用的还挺爽的,第二天再用就不行了,报的错误如标题.网上也是众说纷纭,可能有很多原因会导致这种错误吧.我用的是将Mysqld这个进程杀掉,就可以启动mysql了 the server quit without updating pid file (/var/lib/mysql/localhost.localdomain.pid),布布扣,bubuko.com the server quit without updating pid file (/var/lib/mysql/l

MySQL提示:The server quit without updating PID file问题的解决办法

今天网站web页面提交内容到数据库,发现出错了,一直提交不了,数找了下原因,发现数据写不进去!第一反应,重启mysql数据库,一直执行中,停止不了也启动不了,直觉告诉我磁盘满了 ! 用df命令查了下,果然磁盘满了,因为当时分区采用系统默认,不知道为什么不能自动扩容!以后在处理这个问题!如图所示: 复制代码 代码如下: [[email protected] ~]# df文件系统                 1K-块      已用      可用 已用% 挂载点/dev/mapper/vg_s

解决mysql启动时报The server quit without updating PID file 的错误(转)

1.一般是权限问题,把用户和组改为mysql就可以了. chown -R mysql:mysql  /var/lib/mysql 2.在启动mysql时报下列错误 [[email protected] ~]# service mysql.server startStarting MySQL......................................The server quit without updating PID file (/var/lib/mysql/mysqld2.c

Elasticsearch Updating documents

在ES裡, 更新documents到index不是一件簡單的事情, 我們得在這裡留個心眼. 眾所皆知RESTful風格使用HTTP的動詞來進行所謂的Update, ES也是如此. 要注意到ES的更新有兩種方式 整個docment更新(取代,覆蓋) 根據某個field更新(count += 3, append字符串, 替數組增加元素, 刪除field) //根據某個field更新$ curl -XPOST 'localhost:9200/test/type1/1/_update' -d '{ "s

更新整个document(updating a whole document)

ES中的document是不可变的.如果想要修改一个已经存在的document只有替换他,如下: PUT /website/blog/123{  "title":"My first blog entry",  "text":  "I am starting to get the hang of this...",  "date":  "2014/01/02"} 在响应里,可以看到,_ve