记录一下有用的链接和tool,会一直添加的~

非常好的web基础知识教程:

http://www.w3school.com.cn/h.asp

Introduction to State Machines:

http://www.desaware.com/tech/statemachineintro.aspx

Path Tools Eclipse Plug-in:

http://code.google.com/p/pathtools/

CruiseControl tutorial:

http://www.javaranch.com/journal/200409/DrivingOnCruiseControl_Part1.html

如何在cc中使用JSP显示build结果:

http://cruisecontrol.sourceforge.net/reporting/jsp/index.html


Simple is a high performance XML serialization and configuration framework for Java:

http://simple.sourceforge.net/home.php

Java tutorial:(明天我要看这个)

http://download.oracle.com/javase/tutorial/tutorialLearningPaths.html

Java cookbook.

http://www.rgagnon.com/howto.html

Javadoc search frame:

http://userscripts.org/scripts/show/23200

Chain of responsibility pattern and common chain:

http://onjava.com/pub/a/onjava/2005/03/02/commonchains.html?page=2

http://onjava.com/pub/a/onjava/2005/03/02/commonchains.html?page=1

JMS:

http://java.sun.com/developer/technicalArticles/Ecommerce/jms/index.html

JMX:

http://download.oracle.com/javase/tutorial/jmx/overview/index.html
pkg tutorial:

http://dlc.sun.com/osol/docs/content/PACKINSTALL/preface-10.html

SVN commands:

http://www.linuxfromscratch.org/blfs/edguide/chapter03.html#ch03-update

文章里介绍的Python教程,好不好不知道:

http://code.google.com/edu/languages/google-python-class/

Ruby 教程:

http://www.rubylearning.org/class/

Inside the Java Virtual Machine,只有这本书的几章是free的:

http://www.artima.com/insidejvm/ed2/index.html

yet another java service wrapper,用来将java封装成unix service的:

http://yajsw.sourceforge.net/#mozTocId964398


TestNG + unitils

http://www.unitils.org/summary.html

TestNG vs JUnit:

http://www.ibm.com/developerworks/java/library/j-cq08296/index.html

All the open source software in C#

http://csharp-source.net/

在一台机器上安装多个版本的eclipse

http://www.javalobby.org/java/forums/t18678.html

how to configure DNS:

http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch18_:_Configuring_DNS#Basic_DNS_Testing_of_DNS_Resolution

JUnit test

http://www.sonatype.com/people/2009/06/integration-tests-with-maven-part-1-failsafe-plugin/

http://junit.sourceforge.net/doc/cookbook/cookbook.htm

浏览Maven repository里的内容,以及如何加dependency。非常非常好用。

https://repository.sonatype.org/index.html#nexus-search;quick~junit

安装Cobertura

http://java-tutorial.ch/software-testing/maven-cobertura

Maven

http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html

http://maven.apache.org/guides/getting-started/index.html

http://maven.apache.org/guides/introduction/introduction-to-the-pom.html

TIBCO

http://tibcoadmin.com/tibco/ems/what-is-tibco-ems/

关于corbetura的一篇文章:

http://www.ibm.com/developerworks/java/library/j-cobertura/

和corbetura使用的一个bytecode manipulation 工具:

http://asm.ow2.org/

Introduction to Parallel Programming and MapReduce:

http://code.google.com/edu/parallel/mapreduce-tutorial.html

用来查看ant脚本的工具:

https://github.com/pvdb/ant2dot

http://www.ggtools.net/grand/

都没用过, 貌似后面这个不错。

ant 命令手册:

http://ant.apache.org/manual/

ant扩展工具:

http://ant-contrib.sourceforge.net/

lucene:

http://lucene.apache.org/java/docs/index.html

free pdf for developer:

http://refcardz.dzone.com/


http://www.alibuybuy.com/posts/21877.html


http://www.tornadoweb.org/

Chromium:


一个非常非常好的,入门级的搭建tomcat servlet的文章

http://keyboardsamurais.de/2004/01/15/tomcat_tutorial_helloworld_for_complete_fools_-_english/


http://dannorth.net/introducing-bdd/

http://en.wikipedia.org/wiki/Behavior_Driven_Development

一个简单的eclipse使用介绍
http://www.vogella.de/articles/Eclipse/article.html

介绍如何使用prstat查看solaris性能的文章

http://developers.sun.com/solaris/articles/prstat.html


将电脑的wifi共享出来的软件:

connectify


电子书资源网站:

http://bbs.duokan.com/forum/thread-66236-1-1.html

make file 手册

http://www.gnu.org/software/make/manual/make.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是添加了用户管理、登录和数据记录和分析功能的代码示例: ``` import tkinter as tk class MainInterface: def __init__(self, master): self.master = master master.title("物流中心自动引导小车监控管理系统") # 创建菜单栏 self.menu_bar = tk.Menu(master) self.file_menu = tk.Menu(self.menu_bar, tearoff=0) self.file_menu.add_command(label="新建") self.file_menu.add_command(label="保存") self.file_menu.add_separator() self.file_menu.add_command(label="退出", command=self.master.quit) self.menu_bar.add_cascade(label="文件", menu=self.file_menu) # 创建工具栏 self.tool_bar = tk.Frame(master, relief=tk.RAISED, bd=2) self.tool_bar.pack(side=tk.TOP, fill=tk.X) self.new_button = tk.Button(self.tool_bar, text="新建") self.new_button.pack(side=tk.LEFT, padx=2, pady=2) self.save_button = tk.Button(self.tool_bar, text="保存") self.save_button.pack(side=tk.LEFT, padx=2, pady=2) self.exit_button = tk.Button(self.tool_bar, text="退出", command=self.master.quit) self.exit_button.pack(side=tk.RIGHT, padx=2, pady=2) # 创建状态栏 self.status_bar = tk.Label(master, text="欢迎使用物流中心自动引导小车监控管理系统", bd=1, relief=tk.SUNKEN, anchor=tk.W) self.status_bar.pack(side=tk.BOTTOM, fill=tk.X) # 创建用户管理界面 self.user_frame = tk.Frame(master) self.user_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # 创建登录界面 self.login_frame = tk.Frame(master) self.login_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # 创建数据记录和分析界面 self.data_frame = tk.Frame(master) self.data_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # TODO: 添加用户管理、登录和数据记录和分析界面的具体内容 root = tk.Tk() interface = MainInterface(root) root.config(menu=interface.menu_bar) root.mainloop() ``` 在上面的代码中,我们添加了三个新的界面:用户管理界面、登录界面和数据记录和分析界面。您可以根据实际需求,添加这些界面的具体内容。 例如,在用户管理界面中,可以添加以下内容: ``` # 创建用户管理界面 self.user_frame = tk.Frame(master) self.user_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # 添加用户列表 self.user_listbox = tk.Listbox(self.user_frame) self.user_listbox.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) for user in users: self.user_listbox.insert(tk.END, user) # 添加用户信息面板 self.user_info_frame = tk.Frame(self.user_frame) self.user_info_frame.pack(side=tk.RIGHT, fill=tk.BOTH, expand=True) self.username_label = tk.Label(self.user_info_frame, text="用户名:") self.username_label.pack(side=tk.TOP, padx=10, pady=10) self.username_entry = tk.Entry(self.user_info_frame) self.username_entry.pack(side=tk.TOP, padx=10, pady=10) self.password_label = tk.Label(self.user_info_frame, text="密码:") self.password_label.pack(side=tk.TOP, padx=10, pady=10) self.password_entry = tk.Entry(self.user_info_frame, show="*") self.password_entry.pack(side=tk.TOP, padx=10, pady=10) self.add_button = tk.Button(self.user_info_frame, text="添加用户") self.add_button.pack(side=tk.TOP, padx=10, pady=10) self.update_button = tk.Button(self.user_info_frame, text="修改用户") self.update_button.pack(side=tk.TOP, padx=10, pady=10) self.delete_button = tk.Button(self.user_info_frame, text="删除用户") self.delete_button.pack(side=tk.TOP, padx=10, pady=10) ``` 在登录界面中,可以添加以下内容: ``` # 创建登录界面 self.login_frame = tk.Frame(master) self.login_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # 添加登录表单 self.username_label = tk.Label(self.login_frame, text="用户名:") self.username_label.pack(side=tk.TOP, padx=10, pady=10) self.username_entry = tk.Entry(self.login_frame) self.username_entry.pack(side=tk.TOP, padx=10, pady=10) self.password_label = tk.Label(self.login_frame, text="密码:") self.password_label.pack(side=tk.TOP, padx=10, pady=10) self.password_entry = tk.Entry(self.login_frame, show="*") self.password_entry.pack(side=tk.TOP, padx=10, pady=10) self.login_button = tk.Button(self.login_frame, text="登录") self.login_button.pack(side=tk.TOP, padx=10, pady=10) ``` 在数据记录和分析界面中,可以添加以下内容: ``` # 创建数据记录和分析界面 self.data_frame = tk.Frame(master) self.data_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) # 添加数据列表 self.data_listbox = tk.Listbox(self.data_frame) self.data_listbox.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) for data in datas: self.data_listbox.insert(tk.END, data) # 添加数据统计面板 self.data_stat_frame = tk.Frame(self.data_frame) self.data_stat_frame.pack(side=tk.RIGHT, fill=tk.BOTH, expand=True) self.total_label = tk.Label(self.data_stat_frame, text="总记录数:{}".format(len(datas))) self.total_label.pack(side=tk.TOP, padx=10, pady=10) self.avg_label = tk.Label(self.data_stat_frame, text="平均值:{}".format(avg)) self.avg_label.pack(side=tk.TOP, padx=10, pady=10) self.max_label = tk.Label(self.data_stat_frame, text="最大值:{}".format(max)) self.max_label.pack(side=tk.TOP, padx=10, pady=10) self.min_label = tk.Label(self.data_stat_frame, text="最小值:{}".format(min)) self.min_label.pack(side=tk.TOP, padx=10, pady=10) ``` 当然,上面的代码只是一个示例,您需要根据您的实际需求和设计,对这些界面进行具体的实现和修改。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值