idea debug常用操作

Debug用来追踪代码的运行流程,通常在程序运行过程中出现异常,启用Debug模式可以分析定位异常发生的位置,以及在运行过程中参数的变化。通常我们也可以启用Debug模式来跟踪代码的运行流程去学习三方框架的源码。

所以学习下如何在Intellij IDEA中使用好Debug。

一、Debug开篇

首先看下IDEA中Debug模式下的界面。

如下是在IDEA中启动Debug模式,进入断点后的界面,我这里是Windows,可能和Mac的图标等会有些不一样。就简单说下图中标注的8个地方:

1、以Debug模式启动服务,左边的一个按钮则是以Run模式启动。在开发中,我一般会直接启动Debug模式,方便随时调试代码。

2、断点:在左边行号栏单击左键,或者快捷键Ctrl+F8 打上/取消断点,断点行的颜色可自己去设置。

3、Debug窗口:访问请求到达第一个断点后,会自动激活Debug窗口。如果没有自动激活,可以去设置里设置,如图1.2。

4、调试按钮:一共有8个按钮,调试的主要功能就对应着这几个按钮,鼠标悬停在按钮上可以查看对应的快捷键。在菜单栏Run里可以找到同样的对应的功能,如图1.4。

5、服务按钮:可以在这里关闭/启动服务,设置断点等。

6、方法调用栈:这里显示了该线程调试所经过的所有方法,勾选右上角的[Show All Frames]按钮,就不会显示其它类库的方法了,否则这里会有一大堆的方法。

7、Variables:在变量区可以查看当前断点之前的当前方法内的变量。

8、Watches:查看变量,可以将Variables区中的变量拖到Watches中查看

[图1.1]

在设置里勾选Show debug window on breakpoint,则请求进入到断点后自动激活Debug窗口

[图1.2]

如果你的IDEA底部没有显示工具栏或状态栏,可以在View里打开,显示出工具栏会方便我们使用。可以自己去尝试下这四个选项。

[图1.3]

在菜单栏Run里有调试对应的功能,同时可以查看对应的快捷键。

[图1.4]

基于 Spring Boot + MyBatis Plus + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能

  • 项目地址:https://gitee.com/zhijiantianya/ruoyi-vue-pro

  • 视频教程:https://doc.iocoder.cn/video/

二、基本用法&快捷键

Debug调试的功能主要对应着图一中4和5两组按钮:

1、首先说第一组按钮,共8个按钮,从左到右依次如下:

[图2.1]

  • Show Execution Point (Alt + F10):如果你的光标在其它行或其它页面,点击这个按钮可跳转到当前代码执行的行。

  • Step Over (F8):步过,一行一行地往下走,如果这一行上有方法不会进入方法。

  • Step Into (F7):步入,如果当前行有方法,可以进入方法内部,一般用于进入自定义方法内,不会进入官方类库的方法,如第25行的put方法。

  • Force Step Into (Alt + Shift + F7):强制步入,能进入任何方法,查看底层源码的时候可以用这个进入官方类库的方法。

  • Step Out (Shift + F8):步出,从步入的方法内退出到方法调用处,此时方法已执行完毕,只是还没有完成赋值。

  • Drop Frame (默认无):回退断点,后面章节详细说明。

  • Run to Cursor (Alt + F9):运行到光标处,你可以将光标定位到你需要查看的那一行,然后使用这个功能,代码会运行至光标行,而不需要打断点。

  • Evaluate Expression (Alt + F8):计算表达式,后面章节详细说明。

2、第二组按钮,共7个按钮,从上到下依次如下:

[图2.2]

  • Rerun 'xxxx':重新运行程序,会关闭服务后重新启动程序。

  • Update 'tech' application (Ctrl + F5):更新程序,一般在你的代码有改动后可执行这个功能。而这个功能对应的操作则是在服务配置里,如图2.3。

  • Resume Program (F9):恢复程序,比如,你在第20行和25行有两个断点,当前运行至第20行,按F9,则运行到下一个断点(即第25行),再按F9,则运行完整个流程,因为后面已经没有断点了。

  • Pause Program:暂停程序,启用Debug。目前没发现具体用法。

  • Stop 'xxx' (Ctrl + F2):连续按两下,关闭程序。有时候你会发现关闭服务再启动时,报端口被占用,这是因为没完全关闭服务的原因,你就需要查杀所有JVM进程了。

  • View Breakpoints (Ctrl + Shift + F8):查看所有断点,后面章节会涉及到。

  • Mute Breakpoints:哑的断点,选择这个后,所有断点变为灰色,断点失效,按F9则可以直接运行完程序。再次点击,断点变为红色,有效。如果只想使某一个断点失效,可以在断点上右键取消Enabled,如图2.4,则该行断点失效。

更新程序,On 'Update' actions,执行更新操作时所做的事情,一般选择'Update classes and resources',即更新类和资源文件。

一般配合热部署插件会更好用,如JRebel,这样就不用每次更改代码后还要去重新启动服务。如何激活JRebel,在最后章节附上。

下面的On frame deactivation,在IDEA窗口失去焦点时触发,即一般你从idea切换到浏览器的时候,idea会自动帮你做的事情,一般可以设置Do nothing,频繁切换会比较消耗资源的。

[图2.3]

[图2.4]

基于 Spring Cloud Alibaba + Gateway + Nacos + RocketMQ + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能

  • 项目地址:https://gitee.com/zhijiantianya/yudao-cloud

  • 视频教程:https://doc.iocoder.cn/video/

三、变量查看

在Debug过程中,跟踪查看变量的变化是非常必要的,这里就简单说下IDEA中可以查看变量的几个地方,相信大部分人都了解。

1、如下,在IDEA中,参数所在行后面会显示当前变量的值。

[图3.1]

2、光标悬停到参数上,显示当前变量信息。点击打开详情如图3.3。我一般会使用这种方式,快捷方便。

[图3.2]

[图3.3]

3、在Variables里查看,这里显示当前方法里的所有变量。

[图3.4]

4、在Watches里,点击New Watch,输入需要查看的变量。或者可以从Variables里拖到Watche里查看。

[图3.5]

如果你发现你没有Watches,可能在下图所在的地方。

[图3.6]

[图3.7]

四、计算表达式

在前面提到的计算表达式如图4.1的按钮,Evaluate Expression (Alt + F8) 。可以使用这个操作在调试过程中计算某个表达式的值,而不用再去打印信息。

[图4.1]

1、按Alt + F8或按钮,或者,你可以选中某个表达式再Alt + F8,弹出计算表达式的窗口,如下,回车或点击Evaluate计算表达式的值。

这个表达式不仅可以是一般变量或参数,也可以是方法,当你的一行代码中调用了几个方法时,就可以通过这种方式查看查看某个方法的返回值。

[图4.2]

2、设置变量,在计算表达式的框里,可以改变变量的值,这样有时候就能很方便我们去调试各种值的情况了不是。

[图4.3]

五、智能步入

想想,一行代码里有好几个方法,怎么只选择某一个方法进入。之前提到过使用Step Into (Alt + F7) 或者 Force Step Into (Alt + Shift + F7)进入到方法内部,但这两个操作会根据方法调用顺序依次进入,这比较麻烦。

那么智能步入就很方便了,智能步入,这个功能在Run里可以看到,Smart Step Into (Shift + F7),如图5.1

[图5.1]

按Shift + F7,会自动定位到当前断点行,并列出需要进入的方法,如图5.2,点击方法进入方法内部。

果只有一个方法,则直接进入,类似Force Step Into。

[图5.2]

六、断点条件设置

通过设置断点条件,在满足条件时,才停在断点处,否则直接运行。

通常,当我们在遍历一个比较大的集合或数组时,在循环内设置了一个断点,难道我们要一个一个去看变量的值?那肯定很累,说不定你还错过这个值得重新来一次。

1、在断点上右键直接设置当前断点的条件,如图6.1,我设置exist为true时断点才生效。

[图6.1]

2、点击View Breakpoints (Ctrl + Shift + F8),查看所有断点。

  • Java Line Breakpoints 显示了所有的断点,在右边勾选Condition,设置断点的条件。

  • 勾选Log message to console,则会将当前断点行输出到控制台,如图6.3

  • 勾选Evaluate and log,可以在执行这行代码是计算表达式的值,并将结果输出到控制台。

[图6.2]

[图6.3]

3、再说说右边的Filters过滤,这些一般情况下不常用,简单说下意思。

  • Instance filters:实例过滤,输入实例ID(如图6.5中的实例ID),但是我这里没有成功,不知道什么原因,知道的朋友留个言。

  • Class filters:类过滤,根据类名过滤,同样没有成功....

  • Pass count:用于循环中,如果断点在循环中,可以设置该值,循环多少次后停在断点处,之后的循环都会停在断点处。

[图6.4]

[图6.5]

4、异常断点,通过设置异常断点,在程序中出现需要拦截的异常时,会自动定位到异常行。

如图6.6,点击+号添加Java Exception Breakpoints,添加异常断点。然后输入需要断点的异常类,如图6.7,之后可以在Java Exception Breakpoints里看到添加的异常断点。

我这里添加了一个NullPointerException异常断点,如图6.8,出现空指针异常后,自动定位在空指针异常行。

[图6.6]

[图6.7]

[图6.8]

七、多线程调试

一般情况下我们调试的时候是在一个线程中的,一步一步往下走。但有时候你会发现在Debug的时候,想发起另外一个请求都无法进行了?

那是因为IDEA在Debug时默认阻塞级别是ALL,会阻塞其它线程,只有在当前调试线程走完时才会走其它线程。可以在View Breakpoints里选择Thread,如图7.1,然后点击Make Default设置为默认选项。

[图7.1]

切换线程,在图7.2中Frames的下拉列表里,可以切换当前的线程,如下我这里有两个Debug的线程,切换另外一个则进入另一个Debug的线程。

[图7.2]

八、回退断点

在调试的时候,想要重新走一下流程而不用再次发起一个请求?

1、首先认识下这个方法调用栈,如图8.1,首先请求进入DemoController的insertDemo方法,然后调用insert方法,其它的invoke我们且先不管,最上面的方法是当前断点所在的方法。

[图8.1]

2、断点回退

所谓的断点回退,其实就是回退到上一个方法调用的开始处,在IDEA里测试无法一行一行地回退或回到到上一个断点处,而是回到上一个方法。

回退的方式有两种,一种是Drop Frame按钮(图8.2),按调用的方法逐步回退,包括三方类库的其它方法(取消Show All Frames按钮会显示三方类库的方法,如图8.3)。

第二种方式,在调用栈方法上选择要回退的方法,右键选择Drop Frame(图8.4),回退到该方法的上一个方法调用处,此时再按F9(Resume Program),可以看到程序进入到该方法的断点处了。

但有一点需要注意,断点回退只能重新走一下流程,之前的某些参数/数据的状态已经改变了的是无法回退到之前的状态的,如对象、集合、更新了数据库数据等等。

图[8.2]

图[8.3]

图[8.4]

九、中断Debug

想要在Debug的时候,中断请求,不要再走剩余的流程了?

有些时候,我们看到传入的参数有误后,不想走后面的流程了,怎么中断这次请求呢(后面的流程要删除数据库数据呢....),难道要关闭服务重新启动程序?嗯,我以前也是这么干的。

确切的说,我也没发现可以直接中断请求的方式(除了关闭服务),但可以通过Force Return,即强制返回来避免后续的流程,如图9.1。

点击Force Return,弹出Return Value的窗口,我这个方法的返回类型为Map,所以,我这里直接返回 results,来强制返回,从而不再进行后续的流程。或者你可以new HashMap<>()。

[图9.1]

[图9.2]

  • 0
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
1 , WinLocaleConvert.zip<br>This program shows the international settings of the country you select such as Format Currency, Date Format, Day Name, Month Name...<END><br>2 , netstuff.zip<br>This program queries the network and shows the Domains/Servers/Workstations structure. It also shows the users of each Server or Workstation and can send messages to the selected PC. This programs works only on a Windows NT 4.0 Machine!<END><br>3 , projectgroupx.zip<br>You may use this code as a learning tool only. The application may not be sold in any shape or form. So 下载 the code and get involved with the News Group, help us to help you.<END><br>4 , urllink.zip<br>User control to launch web browser and jump to URL.<END><br>5 , vbftp.zip<br>Sample application that implements FTP connection, 下载, and upload using the WinInet FTP API from Visual Basic<END><br>6 , browser.zip<br>Simple web browser using the Microsoft Internet Control.<END><br>7 , ftp.zip<br>Complete FTP application.<END><br>8 , chatclnt.zip<br>Client side of an internet chat program<END><br>9 , chatserv.zip<br>Server side of an internet chat program<END><br>10 , hlink.zip<br>Is a control that you can use to link your program to a web site.<END><br>11 , Popmail.zip<br>Checks your email!<END><br>12 , telnet.zip<br>Telnet Application<END><br>13 , validip.zip<br>Validate an IP address<br>14 , dmvbtest.zip<br>This is a complete email sending client in Visual Basic<END><br>15 , CarlosChatApp.zip<br>This is a program that enables two people to chat across the internet. You must know each others IP address and have an understanding of ports<END><br>16 , inteferorprovider.zip<br>program which communicates with each other and allows one computer to perform a task on the other<END><br>17 , itimer.zip<br>Internet Timer. Also calculates the cost of the call. Can AutoDetect Phone call charges from the time and date.<END><br>18 , tlsNet.zip<br>TILISOFT Internet ActiveX Controls - Retrieve HTML pages from the Net - Post data to HTTP server <END><br>19 , pingmon.zip<br>A ping monitor for the network administrator. Based on API code <END><br>20 , webbrowser.zip<br>Easily build your very own custom web browser,using the web browser object<END><br>21 , StealthSRC.zip<br>StealthMail 2.1 - full SOURCECODE for the StealthMail 2.1 program. Uses only VB6 code, and NO API calls!<END><br>22 , Worldmeet.zip<br>This is the source code for a client and server chat program. <END><br>23 , RemoteFileExp.zip<br>This utility allows you to remotely reboot, log-off, 下载 files, delete files,luanch applications, auto navigate a web browser and view desktops via TCP/IP<END><br>24 , Lagmeter.zip<br>This Will Allow You To See A Visual Representation Of The Latency of Your Local Machines IP. A.k.a Lag Meter<END><br>25 , mailcheck.zip<br>Mail Checker Sample Application. Create your own POP3 client to retrieve e-mails from mail server. Source code + tutorial.<END><br>26 , chat.zip<br>This code shows you how to creat a local network chat room so that you and your friends can have a chat room which nowone else can enter<END><br>27 , news.zip<br>Demonstrates how to downlaod text from a webpage without a browser open. This could be used for what i used it for in the past for a news program<END><br>28 , url.zip<br>Worldwide list of URL extensions by country<END><br>29 , EmailChk.zip<br>This Application checks for unread email using outlook. MS Agent will popup to announce how many unread mails you got. This also checks sub-folders on your inbox. Configuration is added to choose which MS Agent to use and the Time interval use to check for mails<END><br>30 , wsc_ftp_client.zip<br>FTP Client Sample Application. It was built with MS Winsock Control. It is a complete FTP client that allows you to browse FTP directories, 下载 and upload files, resume broken file transfer, create and remove directories, delete and rename files. All the operations execute in an asynchronous mode with the progress indication . <END><br>31 , MultiServer.zip<br>This is real simple source code for a Multi-Client server, it allows upto 65535 users to connnect to your server,via winsock control- it can be customised to become any server, such as IRC, FTP. plus all the functions are in their to relay data and store information on each users accounts. <END><br>32 , GuardDuty.zip<br>Lets you create your very own Cyber Sitter or Net Nanny Type software- it blocks access to sites based on keywords such as "sex","hack" or "security" alternatively whatever you want ! - it's the long awaited project version of previously released WEB ADDRESS SPY! <END><br>33 , whisper.zip<br>Complete LAN chat program<END><br>34 , vbtelnetserver.zip<br>Telnet Server. Allows multiple connections, uses Access DB to store Access Control Lists/Users<END><br>35 , CasperEdit.zip<br>Almost complete HTML editor with many functions. This is only a pre-released version so some stuff doesn't work.<END><br>36 , browser0516.zip<br>Its a fully functional web browser<END><br>37 , lovevirusCleaner.zip<br>With the onslaught of the Love Bug virus in the last 24 hours, many of us had to provide solutions prior to the Virus Protection companies. This VB6 code cleans the ILOVEYOU virus from systems<END><br>38 , shras21.zip<br>Custom Control, that lets you have full control of Dial Up Networking<END><br>39 , FullBrowser.zip<br>: This is A Complete Internet Browser Like IE With More Fuctions Like Bulk mail And Many more. Requires several third-party OCX files including Autocomplete.ocx.<END><br>40 , webpagmaker.zip<br>Web page maker <END><br>41 , vs.zip<br>Viru-Spy. Relays sytem information to your email account. Run on someone else machine to retrieve system info,dial up passwords, bookmarked urls etc etc<END><br>42 , icqp.zip<br>Send ICQ messages from VB<END><br>43 , DekMate2.0.zip<br>All new DeskMate2.0 with added new features like email checking, NT messaging system, movie screen, system tray alerts as well as the old features like, Online Weather, News headlines, Online Horoscopes, Movie Reviews etc.<END><br>44 , TelDialOut1.zip<br>TelDialOut is a program that dials a phone number from an application using the modem. I had observed the large number of postings on various forums about this topic so I have included a well documented application to assist those who would be using this feature in their applications<END><br>45 , TreeViewXML.zip<br>Great example program for programmers learning XML. This program shows you how to use the msxml.dll control, as well as the treeview control. Users must have msxml.dll version 2.0 for binary compatibility.<END><br>46 , CustEditXML.zip<br>Complete VB application that retrieves customer information from an XML script, allows you to make changes to the data, and saves the record using other XML scripts. This is a great example for learning MSXML.dll and TransactXML.dll procedures. <END><br>47 , email1mapi.zip<br>Visual Basic code for Sending email using MAPI control.<END><br>48 , Dan.zip<br>Dan's All purpose masterful program <END><br>49 , metasite.zip<br>this vb code executes a request from metacrawler.com and returns all links results in a TreeView.<END><br>50 , email.zip<br>Sending Email using MAPI control.<END><br>51 , EmailChecker.zip<br>Checks your new mails from mutiple mail servers(yeah it works!!!!!). it switches tray icons on different states & displays the number of new messages (as msn messenger display messages) and plays a WAV file<END><br>52 , urlhist.zip<br>This sample demonstrates how to loop through the history folder of Internet Explorer.<END><br>53 , AdvancedWebBrowser.zip<br>Advanced web browser..something like IE but less options really nice interface..code is very easy to understand..teaches you the basics of using vb.<END><br>54 , iusage.zip<br>NO its not another internet usage monitor its different.Apart from calculating the cost and total time you spend on the net it even reminds you to switch of the net after a time interval which you specify.Check out this cool program.<END><br>55 , dauntless.zip<br>This is an exceptionally good piece of code. One program runs on a machine somewhere, and the other on your machine. You can then send commands to the other machine, take screen snapshots and more... It uses the INET control for all functionality, but you could do the same with the Winsock DLL.<END><br>56 , netcontrol2.zip<br>Following on from the original NetControl by Danny, this little ActiveX/OXC project contains some small modifications and the sourcecode for the control. You can send messages with a client/server type setup.<END><br>57 , al40.zip<br>Apparently, if you use AOL to connect to the Internet and you do not touch it for 45 minutes it will timeout and drop the connection. This little program will ensure that it keeps the connection active.<END><br>58 , yougotmail.zip<br>Kenneth has developed this is a great little application which reads a Microsoft Exchange mailbox and lets you know via playing a .WAV file when you have mail.<END><br>59 , netcontrol.zip<br>This little project is Dannys first attempt at an ActiveX control and its very good. There are two mini projects included here. The first is called SlotDemo and allows you to send messages or data in a client/server type role. Its uses some very clever programming.<END><br>60 , cethernetaddress.zip<br>We found this bit of code somewhere on the Internet a few months ago and tidied it up a bit. I don't know the author's name so cannot give them credit. But basically this sample will return the Ethernet Address of the card in the current machine.<END><br>61 , cnetworkinfo.zip<br>This little demo will return, using Windows API calls, the following: IP Address, Network Username, WorkdstationID, Windows version, build version and service pack info, the windows directory, the PDC name if you are logged onto an NT server and the time <END><br>62 , ccheckduncount.zip<br>If you want to check if there is a RAS/DUN conneciton activ, then this little routine will return true or false depending on whats going on. If RAS isn't installed on the machine, it will crash but otherwise its a great routine. For more information<END><br>63,winskip.zip<br>Using the Winsock Control to get IP Information <END><br>64,opnblank.zip<br>Open a Blank Browser Window <END><br>65,distitl.zip<br>Display the Title of a Page in a Form's Caption Bar <END><br>66,disbrows.zip<br>Disable Input to a WebBrowser Control <END><br>67,lbllink.zip<br>Make a Label Act Like an Internet Link<END><br>68,linkcmbo.zip<br>Link a ComboBox to a WebBrowser Control<END><br>69,navbutns.zip<br>Navigation Buttons<END><br>70,status.zip<br>Show Browser Status<END><br>71,iphost.zip<br>Get Local IP and HostName using WinSock<END><br>72,xmldirviewer.zip<br>This is a sample from an XML implementation I created for my company's Intranet, giving the capability for user maintained content<END><br>73,phone.zip<br>A Cellular Phone Application Uses MSCOMM, Modem and normal telephone lines to make calls. <END><br>74,PhoneDial.zip<br>A Phone Dialing program that play both DTMF Tones and MF Tones using wav files. It does not use A real Phone.<END><br>75,dnslookup.zip<br>Easy DNS Lookup and Reverse Name lookup using qdns.dll (dll vb source is included in zip). For use see included sample ASP page.<END><br>76,Mar_05_2001.zip<br>About myself, i am a computer pro experienced in creating dynamic data driven web sites. About the code, it demonstrates the usage of internet transfer control to 下载 the content from the web.<END><br>77,InstantMessenger.zip<br>A basic Instant Messenger. <END><br>78,WebCapture.zip<br>Just mention the site URL and easily Capture the desired Data, Tag's from that Web Site. Also <br>helps in understanding the use of DoEvents, Error traping and many more features. <END><br>79,destructureur.zip<br>this code analyse DOM of a web document(Document Object Model).<br>Usefull in order to rettrieve all links, images, scripts informations like url, index, absolute index of all HTML objects. <END><br>80,bla.zip<br>This is an Internet Public Chat Application, which is unique. This is for All. I have seen several Internet Chat systems developed but they were not good enough to encourage the Novice programmers understand the complexities of using the Winsock control. This is the Internet Chat System developed using Winsock Control only and no API calls, or any other DLLs. <END><br>81,EmailSystem.zip<br>In this tutorial of 100+ pages, you can get every thing which is mainly related to build a complete web based email system. this artical will cover everthing of SMTP, POP3, MIME and HTTP. <END><br>82,inanny.zip<br>Inanny is a netnanny like clone,u can use inanny to block sites locally.The new version works with netscape(all versions) as well as ie(all versions). <END><br>83,source_build84.zip<br>IRC Client that supports all basic needs of an IRC Client and a bit more. Uses Raw RTF code, so it's very fast displaying text. Also handles IDENTd properly. <END><br>84,Blitz.zip<br>Blitz Chat System is a complete Chat Server and Client application for internet and intranet users. It has facilities like room selection, <END><br>85,QNavigator.zip<br>Q Navigator Ver 1.1 is an updated form of my Web Browser, which has the best features (and more) of all browsers. <END><br>86,atomicclock.zip<br>RJ Soft's AtomicClock (Atomic Clock.Exe) sets your computers Date and Time from an atomic clock via tcp/ip at 12:01 AM every day. Atomic Clock sits in the system tray so you can load it and forget it or click on the icon and tell it to reset the Date and Time. <END><br>86,demooutlook.zip<br>Send Text or HTML Mail(You can join an ONLINE photo). Retrieve all your input box mails and create a new folder. <END><br>87,weather.zip<br>This is a grand application allowing you to get 10 day weather forecasts for almost every region of the world. Also gives you weather imagery maps. Must see. Kind of a big 下载, but I wanted to make sure everything was included. <END><br>88,下载er2.zip<br>Website 下载er.Updated with many new features. <END><br>89,SurfMonitorCODE2.zip<br>OK folks.....this is a better version of the SurfMonitor code. Not only does it have the 'Autodetect' feature, it also manages the registry better and creates log files. The administrator can also apply time and date restrictions on users.... <END><br>90,ThePorter.zip<br>This is an anti-hacker tool I've created. It's much like Lockdown 2000. It sits on your system tray listening for incoming connections on various ports. <END><br>91,SurfMonitorCODE.zip<br>Allows an individual to restrict multiple users to access the users only for a certain amount of time. It also has an 'Autodetect' feature to automatically detect an internet connection and disconnect in case <END><br>92,下载er.zip<br>Just enter the URL of a webspage you want to 下载 and all the links in the webpage will be 下载ed including any image files . The program is still in the development stage . <END><br>93,bmail.zip<br>This software for bulk email for personal and corporate use. The enclosed zip conatains all the codes and readme text. This software uses MAPI and CDO for Windows 9x. <END><br>94,winsock.zip<br>Application demonstrates the use of the VB Winsock control and some of its properties. <END><br>95,HTMLEd.zip<br>A simple HTML editor written in Visual Basic. <END><br>96,emailnotifier.rar<br>This is an application that monitors the local host for IP address changes and notifies a list of people by e-mail if the IP address changes. Both the IP address and the e-mail list are stored between sessions <END><br>97,pbaspediter.zip<br>A Full Advanced ASP/Html Editer with Database, Cookies, includes, sounds, forms, body, Tables wizards and more. (Wizards do html & responce.write) Color coding html. tag inserts, Plugins, Templates, Java codebase, vbscript codebases, full asp codebase Asp Preview on localhost and normal preview and LOTS MORE MUST SEE <END><br>98,Exchange_Viewer.zip<br>You must have Access 2000 installed in order to print. Other than that you should be fine. This will anonymously query an exchange 5.5 or higher exchange server and retrieve The names and email addresses and place them into an access database. This code has many useful examples. <END><br>99,Automatic_Updater.zip<br>UPDATED 11/10/2000 Now With even more options!! This application allows you to check for an updated version of a file or a program via FTP, then 下载 that update if it is available. <END><br>100,PingX.zip<br>Ping(s) a computer and returns the results. <END><br>101,hmupdatedold.zip<br>HotmailBox - Alternative Hotmail client that accesses your inbox. Includes support for multiple accounts, synchronizes your account, has a built-in address book and support for attachments (with the exception of images, so far). <END><br>102,hypermap.zip<br>Hyper_Map allows you to define areas on a webpage graphic for jumping to different URLs. Image mapping is a neat way to create links. Also, the program demonstrates Picture1 draw properties and some HTML creation. <END><br>103,icqvb.zip<br>ICQ Control Center, The worlds most complete icq api example freely availble on the net, this revised edition contains protocol information sample code and much much more ! <END><br>104,HTMLMail.zip<br>This application allows to send HTML mails ! Now you can send images, formatted text in your mails, put some really cool effects ! <END><br>105,NTPSync.zip<br>Synchronize Your System Time with a Network Time Protocol (NTP) Server. <END><br>106,WinsockTrans.zip<br>This code allows you to transfer files from one pc to another using winsock. <END><br>107,Winsock下载.zip<br>Winsock 下载er - Lets you 下载 any file from the internet (Binary, ASCII, Text) any size. <END><br>108,ftp2.zip<br>An FTP application with complete VB source code included. <END><br>109,vb-aim.zip<br>AOL instant messenger client written in VB. <END><br>110,ping2src.zip<br>Version 2.02 of the popular Idoru Ping Monitor. Includes a Password Hacker, and shows important info on your machine <END><br>111,OnYxBrowser.zip<br>A full avtive browser, with all IE's trimings, i have left out the exe and some of the ocx. but ppl who have vb60 should have these ocx. <END><br>112,PostMan.zip<br>VB application which uses winsock control to send mail to your mail server! <END><br>113,transfer.zip<br>Simple file transfer (FTP) application. Contains both the client and server VB source code .vbp applications. Destination filename is set to "Temp". <END><br>114,inter.zip<br>Detects if the user is connected to the internet. <END><br>115,frmClient.zip<br>Started to program a remote tool FTP program. Give some feedback otherwise i'm going to code it in Delphi. <END><br>116,prjClient.zip<br>Live wire winsock file transfer program which retreives remote drives/directories and working on files and enables upload/下载 of files with progressbar. <END><br>117,webbrowser2.zip<br>I have tried to develop a very good browser. Now I myself can't rate it... so i am leaving to you guys out there to rate it.. <END><br>118,InternetBrowser.zip<br>It is an interesting Internet Browser. Add your favorites, URLs, Home Page, and History to Windows 95/98 Registry. Must see. <END><br>119,Browser2.zip<br>[UPDATED]:Complete Internet Browser. Must see. <END><br>120,display.zip<br>This code sample enables users to 下载 and display HTML, RTF, or Text files in a RichTextBox Control, using the Microsoft Internet Transfer Control included in Visual Basic 5.0. <END><br>121,easyhttp.zip<br>Retrieve Web page or file (including all HTTP headers and message body) througn HTTP protocol directly from VB program which utilize the MS WinSock Control. <END><br>122,emailcheck.zip<br>This application checks for incoming mail (POP3 client). <END><br>123,NetSend.zip<br>A Simple Application to Send Messages Without using a COMMAND Prompt. <END><br>124,ChatPrg.zip<br>This application provides seamless interaction between users of an intranet. The database acts as a Server and it has to be loaded on the server of your local intranet and each .exe serves as <br>a client. <END><br>125,Chatty.zip<br>This is a simple one-to-one chat program using Winsock. It includes a text based chat, a messaging feature and also a secure communication feature, much like SSL. I use the RSA 64 bit encryption for the secure channel. <END><br>126,Telephonic.zip<br>The program can be used in your desktop, as is. You will find dialing much more confortable and fast than the original Windows Dialer.exe. <END><br>127,ClientServer.zip<br>A messages Client / Server application (compile and source code).You can send messages from a client to another and server remote all users activity and distribute the messages to client who request that <END><br>128,MESSENGER.zip<br>E-MAIL PROGRAM. ALLOWS USER TO LOG INTO ISP SERVICE AND SEND MESSAGES AND FILES. <END><br>129,ip.zip<br>Very simple application which shows how to get your PC's IP address using the VB Winsock control. <END><br>130,CS_Tools_2.zip<br>This program can save you days to weeks of work on a huge domain with hundreds to thousands of users with its "Bulk Administration" and remote feature. Features Bulk Administration Allows you to administer the login path, profile path, home directory, and more with one click of a button for all users! Alternate Credentials Allows you to specify a different username and password to complete your tasks. <END> <br>131,networkinfo.zip<br>Application which gets all network information from the system. <END><br>132,gethtml.zip<br>This example uses the Inet control to 下载 the HTML source from any webpage. This could easily be used in conjunction with the Get Web Links example to make a full fledged web-spider and search engine program...<END><br>133,getweblinks.zip<br>This example uses the WebBrowser control to load a web page then enumerate and display all of the links on that page. This example could be easily expanded to be used as a web-spider with a little bit of effort. <END><br>134,bs2vb.zip<br>This example is a very simple solution to sending and receiving data to and from a Parallax Basic Stamp. This example requires a Basic Stamp and the MSComm control. Also included is an example Basic Stamp II program to work with the example... <END><br>135,Chatptop.zip<br>A Peer-to-Peer chatting program with a very easy user interface. <END><br>136,f_160.zip<br>A basic example on how to transfer files across the network using the WinSock Control(18KB)<END><br>137,f_159.zip<br>A simple example of exchanging data across a network using the WinSock control(4KB)<END><br>138,f_115.zip<br>A simple web browser built using the Web Browser control(2KB)<END><br>
英文简历(秘书)SECRETARY (SENIOR)   Sandy Lin 15/F,TOWER2 ,BRIGHT CHINA,BUILDING1,BEIJING.      OBJECTIVE   To contribute acquired administrative skills to a senior secretary/word processor position.      SUMMARY OF QUALIFICATIONS   *More than 13 years administrative/clerical experience; type 90 wpm. *Self-motivated;able to set effective priorities and implement decisions to achieve immediate and long-term goals and meet operational deadlines.   *Proven communication abilities,both oral and written.      PROFESSIONAL EXPERIENCE   1988-Present CALDYNE ASSOCIATES,Providence,RI   Secretary   Process technical reports,engineering specs,and traffic studies utilizing Multi-mate WP.Type all requisite documents for staff of 30 professionals.Arrange meetings,handle incoming calls.Expedite UPS mailings,Federal Express,faxing and courier services.Type statistical charts,manuscripts,correspondence,and minutes.Order supplies,coordinate daily meetings,arrange luncheons,and administer labor cards.   1984-1988 BRISTOL BANK,Bristol,CT   Secretary/Receptionist   Utilized call director,typed reports,letters,and expense sheets.Reserved conference rooms,order supplies.Responsible for calligraphy assignments.      1981-1984 SARGENT AGENCY,Hamden,CT   Secretary   Assigned to school of public health.Managed typing of medical charts used in textbooks for government funded medical program in Iran.      EDUCATION   POLLACK SECRETARIAL SCHOOL,Jackson,TN 1979         COMPUTER SKILLS   DOS,Microsoft Word,IBM Compatible,Lotus 1-2-3   Separate category for computer experience calls attention to candidate's technical knowledge.   Education is applicable to candidate'sjob objective and adds weight to resume
Want to make the leap from writing HTML and CSS web pages and create dynamic web applications? Want to take your web skills to the next level? It sounds like you're ready to learn the Web's hottest programming language: JavaScript. Head First JavaScript is your ticket to going beyond copying and pasting the code from someone else's web site, and writing your own interactive web pages., So you're ready to make the leap from writing HTML and CSS web pages to creating dynamic web applications. You want to take your web skills to the next level. And you're finally ready to add 'programmer' to the resume. It sounds like you're ready to learn the Web's hottest programming language: JavaScript. Head First JavaScript is your ticket to going beyond copying and pasting the code from someone else's web site, and writing your own interactive web pages., With Head First JavaScript, you learn:, The basics of programming, from variables to types to looping, How the web browser runs your code, and how you can talk to the browser with your code, Why you'll never have to worry about casting, overloading, or polymorphism when you're writing JavaScript code, How to use the Document Object Model to change your web pages without making your users click buttons, If you've ever read a Head First book, you know what to expect -- a visually rich format designed for the way your brain works. Head First JavaScript is no exception. It starts where HTML and CSS leave off, and takes you through your first program into more complex programming concepts -- like working directly with the web browser's object model and writing code that works on all modern browsers., Don't be intimidated if you've never written a line of code before! In typical Head First style, Head First JavaScript doesn't skip steps, and we're not interested in having you cut and paste code. You'll learn JavaScript, understand it, and have a blast along the way. So get ready... dynamic and exciting web pages are just pages away.

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值