-
This is a text editor, that can open, save, save as, copy, paste, cut,etc. Other...
这是我编的一个文本编辑器,可以用来打开一个文本文件,进行保存,打开,零存为的操作,可以进行复制,粘贴,剪切的操作。另外,可以进行查找与替换功能,可以纠错和改错的功能。-This is a text editor, that can open, save, save as, copy, paste, cut,etc. Otherwise, it also has some functions like find, exchange, error fixed.
- 2022-12-27 08:10:03下载
- 积分:1
-
和讯发评论 和讯发评论 和讯发评论 和讯发评论
和讯发评论 和讯发评论 和讯发评论 和讯发评论 -And hearing the comments and hearing-fat-fat-fat comments and hearing comments and hearing comments and hearing-fat-fat comments and hearing comments and hearing-fat-fat comments
- 2022-01-31 23:11:59下载
- 积分:1
-
Writing of the use of their simple preparation procedure JMF can play. Mp3 music...
自己写的使用JMF编写的简单程序,能播放.mp3等音乐文件能打开jpg等格式图片。可以参考学习。-Writing of the use of their simple preparation procedure JMF can play. Mp3 music files and so on and so on to open the jpg picture format. Can refer to study.
- 2022-03-25 06:04:40下载
- 积分:1
-
这个编译实验把一个正则表达式转化为不确定的有穷自动机NFA算法,有兴趣的朋友可以看看哦。...
这个编译实验把一个正则表达式转化为不确定的有穷自动机NFA算法,有兴趣的朋友可以看看哦。 -The experiment to compile a regular expression into an uncertain finite automata NFA algorithm, interested friends can see Oh.
- 2022-02-25 10:25:11下载
- 积分:1
-
Beida Jade Bird in the first semester of a graduate design, because there are no...
这是我在北大青鸟的第一学期的一个毕业设计,因为还有很多的不会,所有此程序较为简单,希望能在贵网站学到更多...!-Beida Jade Bird in the first semester of a graduate design, because there are not many, all this relatively simple procedure, in the hope of your web site to learn more ...!
- 2023-04-25 19:40:03下载
- 积分:1
-
一个简的javamail收发邮件功能,包含附件的上传。
一个简的javamail收发邮件功能,包含附件的上传。-JavaMail a simple function to send and receive mail, including attachments upload.
- 2022-03-22 04:36:02下载
- 积分:1
-
第1章 JSP技术概述
实例1 第一个JSP页面
第3章 Web开发基础
实例2 HTML与JavaScript交互示例
第4章 JSP语法...
第1章 JSP技术概述
实例1 第一个JSP页面
第3章 Web开发基础
实例2 HTML与JavaScript交互示例
第4章 JSP语法
实例3 JSP程序的基本结构
实例4 简单数据类型综合应用实例-Chapter 1 outlines examples of JSP technology one first JSP page Chapter 3 examples of Web development based on 2 HTML and JavaScript interactive examples, Chapter 4 JSP examples of grammar 3 JSP examples of the basic structure of the procedure 4 simple data types integrated application
- 2022-02-22 03:29:37下载
- 积分:1
-
documents into the flow of small programs JAVA
文件输入流的JAVA小程序-documents into the flow of small programs JAVA
- 2022-03-12 17:48:09下载
- 积分:1
-
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table...
alter table tbl_name add col_name type
例如,给表增加一列weight
mysql>alter table pet add weight int
删除列
alter table tbl_name drop col_name
例如,删除列weight:
mysql>alter table pet drop weight
改变列
alter table tbl_name modify col_name type
例如,改变weight的类型:
mysql> alter table pet modify weight samllint
另一种方法是:
alter table tbl_name change old_col_name col_name type
例如:
mysql> alter table pet change weight weight samllint
给列更名
mysql>alter table pet change weight wei
给表更名
alter table tbl_name rename new_tbl
例如,把pet表更名为animal
mysql>alter table pet rename animal
-alter table tbl_name add col_name type for example, to form an increase in weight mysql> alter table pet add weight int Remove Columns alter table tbl_name drop col_name For example, the deletion of column weight: mysql> alter table pet drop weight change out alter table tbl_name modify col_name type for example, the type of weight change: mysql> alter table pet modify w
- 2022-02-11 13:09:52下载
- 积分:1
-
基本设计思路:
协同编辑开始,客户端只能进行插入或者删除操作。服务器端接收三个客户端的编辑操作,经过集中处理,生成一个操作序列返回各客户端,客户端执行...
基本设计思路:
协同编辑开始,客户端只能进行插入或者删除操作。服务器端接收三个客户端的编辑操作,经过集中处理,生成一个操作序列返回各客户端,客户端执行该序列后将协同编辑结果显示出来。
使用说明:
在Jbuilder 9.0中新建工程“untitled2”;
将文件FrameTest_Client的IP地址改为本地地址;
运行FrameTest文件,启动服务器端;
运行FrameTest_Client文件,启动客户端(三个客户端);
分别点击三个客户端的菜单“文件”―>“连接服务端”;
点击服务器端的菜单“文件”―>“开始服务”;
用户可以开始在客户端协同编辑;
编辑结束,用户点击客户端的菜单“文件”―>“结束客户端”;
关闭服务器端需点击菜单“文件”―>“退出”;
协同编辑结束。
- 2022-01-26 17:18:46下载
- 积分:1