- 浏览: 91515 次
- 性别:
- 来自: 深圳
最新评论
-
Csf_java:
是不是少了什么东西?加载不了dll吗?Exception in ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
zaizai13:
请问我的为什么总是报log4j:WARN No appende ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
stjauns:
chairmanwang 写道楼主您好,我使用了您的程序,但是 ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
chairmanwang:
楼主您好,我使用了您的程序,但是程序报错log4j:WARN ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
stjauns:
daizhe 写道楼主好!感谢分享!我的系统是win7 64位 ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
公司系统用tikeswing做表现层,配置布局的时候有很多重复的代码,于是使用这个工具自动生成代码:
左边是变化的变量名,右下是套用的重复代码格式,按钮指代使用哪种格式填入变量名。
左边是变化的变量名,右下是套用的重复代码格式,按钮指代使用哪种格式填入变量名。
package transms.app._0all.util; import java.awt.BorderLayout; import java.text.BreakIterator; import javax.swing.JTextArea; import javax.swing.JTabbedPane; import javax.swing.JScrollPane; import javax.swing.border.TitledBorder; import javax.swing.JPanel; import javax.swing.JToolBar; import javax.swing.JButton; import javax.swing.JSplitPane; public class AutoCodeGenTool extends javax.swing.JFrame { private static final long serialVersionUID = 627855237034164778L; private javax.swing.JButton ivjJButton1 = null; private javax.swing.JPanel ivjJFrameContentPane = null; private javax.swing.JTextArea txtVar1 = null; private JTextArea txtResult = null; private JTextArea txtPara1 = null; private JTabbedPane tpWest = null; private JScrollPane spWest1 = null; private JScrollPane spWest2 = null; private JTextArea txtVar2 = null; private JScrollPane spWest3 = null; private JTextArea txtVar3 = null; private JTabbedPane tpSouth = null; private JScrollPane spSouth1 = null; private JScrollPane spSouth2 = null; private JScrollPane spSouth3 = null; private JTextArea txtPara2 = null; private JTextArea txtPara3 = null; private JScrollPane spCenter = null; private JToolBar jJToolBarBar = null; private JButton jButton = null; private JButton jButton1 = null; private JButton jButton2 = null; private JButton jButton3 = null; private JSplitPane jSplitPane = null; private JSplitPane jSplitPane1 = null; private JPanel jPanel = null; public AutoCodeGenTool() { super(); initialize(); } /** * Return the JButton1 property value. * * @return javax.swing.JButton */ private javax.swing.JButton getJButton1() { if (ivjJButton1 == null) { ivjJButton1 = new javax.swing.JButton(); ivjJButton1.setName("JButton1"); ivjJButton1.setText("开始"); ivjJButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { doStaff1(); getTxtResult().setSelectionStart(0); getTxtResult().setSelectionEnd(getTxtResult().getCaretPosition()); getTxtResult().requestFocusInWindow(); getTxtResult().copy(); } }); } return ivjJButton1; } protected void doStaff1() { String s1 = getVar(); BreakIterator it = BreakIterator.getLineInstance(); it.setText(s1); int start = it.first(); txtResult.setText(""); for (int end = it.next(); end != BreakIterator.DONE; start = end, end = it.next()) { doStaff2(s1.substring(start, end)); } } private String getVar() { switch (this.tpWest.getSelectedIndex()) { case 0: return txtVar1.getText(); case 1: return txtVar2.getText(); case 2: return txtVar3.getText(); default: return ""; } } private void doStaff2(String para) { String org = getPara(); /** * @@原参数 * @#首字母大写其他不变参数 #@首字母小写其他不变参数 <>全大写参数 ><全小写参数 @< 首字母大写其他小写 */ para = para.replaceAll("\r", ""); para = para.replaceAll("\n", ""); org = org.replaceAll("@@", para); org = org .replaceAll("@#", para.substring(0, 1).toUpperCase() + para.substring(1)); org = org.replaceAll("@<", para.substring(0, 1).toUpperCase() + para.substring(1).toLowerCase()); org = org .replaceAll("#@", para.substring(0, 1).toLowerCase() + para.substring(1)); org = org.replaceAll("<>", para.toUpperCase()); org = org.replaceAll("><", para.toLowerCase()); txtResult.append(org + "\r\n"); } private String getPara() { switch (this.tpSouth.getSelectedIndex()) { case 0: return txtPara1.getText(); case 1: return txtPara2.getText(); case 2: return txtPara3.getText(); default: return ""; } } private JTextArea getTxt() { switch (this.tpSouth.getSelectedIndex()) { case 0: return txtPara1; case 1: return txtPara2; case 2: return txtPara3; default: return null; } } /** * Return the JFrameContentPane property value. * * @return javax.swing.JPanel */ private javax.swing.JPanel getJFrameContentPane() { if (ivjJFrameContentPane == null) { BorderLayout borderLayout = new BorderLayout(); borderLayout.setHgap(6); borderLayout.setVgap(6); ivjJFrameContentPane = new javax.swing.JPanel(); ivjJFrameContentPane.setLayout(borderLayout); ivjJFrameContentPane.setName("JFrameContentPane"); ivjJFrameContentPane.add(getJButton1(), BorderLayout.NORTH); ivjJFrameContentPane.add(getJSplitPane(), BorderLayout.CENTER); } return ivjJFrameContentPane; } /** * Return the JTextArea1 property value. * * @return javax.swing.JTextArea */ private javax.swing.JTextArea getJTextArea1() { if (txtVar1 == null) { txtVar1 = new javax.swing.JTextArea(); txtVar1.setName("JTextArea1"); txtVar1.setRows(3); txtVar1.setColumns(17); } return txtVar1; } /** * Initialize the class. */ private void initialize() { this.setName("JFrame1"); this.setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); this.setBounds(45, 25, 800, 600); this.setTitle("AutoCodeGenTool"); this.setContentPane(getJFrameContentPane()); } /** * This method initializes txtResult * * @return javax.swing.JTextArea */ private JTextArea getTxtResult() { if (txtResult == null) { txtResult = new JTextArea(); } return txtResult; } /** * This method initializes jTextArea1 * * @return javax.swing.JTextArea */ private JTextArea getJTextArea12() { if (txtPara1 == null) { txtPara1 = new JTextArea(); txtPara1.setRows(10); } return txtPara1; } /** * This method initializes tbWest * * @return javax.swing.JTabbedPane */ private JTabbedPane getTbWest() { if (tpWest == null) { tpWest = new JTabbedPane(); tpWest.addTab("VAR1", null, getSpWest1(), null); tpWest.addTab("VAR2", null, getSpWest2(), null); tpWest.addTab("VAR3", null, getSpWest3(), null); } return tpWest; } /** * This method initializes spWest1 * * @return javax.swing.JScrollPane */ private JScrollPane getSpWest1() { if (spWest1 == null) { spWest1 = new JScrollPane(); spWest1.setViewportView(getJTextArea1()); } return spWest1; } /** * This method initializes spWest2 * * @return javax.swing.JScrollPane */ private JScrollPane getSpWest2() { if (spWest2 == null) { spWest2 = new JScrollPane(); spWest2.setViewportView(getTxtVar2()); } return spWest2; } /** * This method initializes txtVar2 * * @return javax.swing.JTextArea */ private JTextArea getTxtVar2() { if (txtVar2 == null) { txtVar2 = new JTextArea(); } return txtVar2; } /** * This method initializes spWest3 * * @return javax.swing.JScrollPane */ private JScrollPane getSpWest3() { if (spWest3 == null) { spWest3 = new JScrollPane(); spWest3.setViewportView(getTxtVar3()); } return spWest3; } /** * This method initializes txtVar3 * * @return javax.swing.JTextArea */ private JTextArea getTxtVar3() { if (txtVar3 == null) { txtVar3 = new JTextArea(); } return txtVar3; } /** * This method initializes tpSouth * * @return javax.swing.JTabbedPane */ private JTabbedPane getTpSouth() { if (tpSouth == null) { tpSouth = new JTabbedPane(); tpSouth.addTab("Para1", null, getSpSouth1(), null); tpSouth.addTab("Para2", null, getSpSouth2(), null); tpSouth.addTab("Para3", null, getSpSouth3(), null); } return tpSouth; } private void focusSouth() { ((JScrollPane) getTpSouth().getSelectedComponent()).getViewport().getView() .requestFocusInWindow(); } /** * This method initializes spSouth1 * * @return javax.swing.JScrollPane */ private JScrollPane getSpSouth1() { if (spSouth1 == null) { spSouth1 = new JScrollPane(); spSouth1.setViewportView(getJTextArea12()); } return spSouth1; } /** * This method initializes spSouth2 * * @return javax.swing.JScrollPane */ private JScrollPane getSpSouth2() { if (spSouth2 == null) { spSouth2 = new JScrollPane(); spSouth2.setViewportView(getTxtPara2()); } return spSouth2; } /** * This method initializes spSouth3 * * @return javax.swing.JScrollPane */ private JScrollPane getSpSouth3() { if (spSouth3 == null) { spSouth3 = new JScrollPane(); spSouth3.setViewportView(getTxtPara3()); } return spSouth3; } /** * This method initializes txtPara2 * * @return javax.swing.JTextArea */ private JTextArea getTxtPara2() { if (txtPara2 == null) { txtPara2 = new JTextArea(); } return txtPara2; } /** * This method initializes txtPara3 * * @return javax.swing.JTextArea */ private JTextArea getTxtPara3() { if (txtPara3 == null) { txtPara3 = new JTextArea(); } return txtPara3; } /** * This method initializes spCenter * * @return javax.swing.JScrollPane */ private JScrollPane getSpCenter() { if (spCenter == null) { TitledBorder vitalBorder = new TitledBorder("结果:"); spCenter = new JScrollPane(); spCenter.setViewportView(getTxtResult()); spCenter.setBorder(vitalBorder); } return spCenter; } /** * This method initializes jJToolBarBar * * @return javax.swing.JToolBar */ private JToolBar getJJToolBarBar() { if (jJToolBarBar == null) { jJToolBarBar = new JToolBar(); jJToolBarBar.add(getJButton()); jJToolBarBar.add(getJButton12()); jJToolBarBar.add(getJButton2()); jJToolBarBar.add(getJButton3()); } return jJToolBarBar; } /** * This method initializes jButton * * @return javax.swing.JButton */ private JButton getJButton() { if (jButton == null) { jButton = new JButton(); jButton.setText(" 原 "); jButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { getTxt().replaceSelection("@@"); focusSouth(); } }); } return jButton; } /** * This method initializes jButton1 * * @return javax.swing.JButton */ private JButton getJButton12() { if (jButton1 == null) { jButton1 = new JButton(); jButton1.setText("大小"); jButton1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { getTxt().replaceSelection("@<"); focusSouth(); } }); } return jButton1; } /** * This method initializes jButton2 * * @return javax.swing.JButton */ private JButton getJButton2() { if (jButton2 == null) { jButton2 = new JButton(); jButton2.setText(" 大 "); jButton2.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { getTxt().replaceSelection("<>"); focusSouth(); } }); } return jButton2; } /** * This method initializes jButton3 * * @return javax.swing.JButton */ private JButton getJButton3() { if (jButton3 == null) { jButton3 = new JButton(); jButton3.setText(" 小 "); jButton3.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { getTxt().replaceSelection("><"); focusSouth(); } }); } return jButton3; } /** * This method initializes jSplitPane * * @return javax.swing.JSplitPane */ private JSplitPane getJSplitPane() { if (jSplitPane == null) { jSplitPane = new JSplitPane(); jSplitPane.setResizeWeight(0.2D); jSplitPane.setRightComponent(getJSplitPane1()); jSplitPane.setLeftComponent(getTbWest()); } return jSplitPane; } /** * This method initializes jSplitPane1 * * @return javax.swing.JSplitPane */ private JSplitPane getJSplitPane1() { if (jSplitPane1 == null) { jSplitPane1 = new JSplitPane(); jSplitPane1.setOrientation(JSplitPane.VERTICAL_SPLIT); jSplitPane1.setResizeWeight(0.8D); jSplitPane1.setBottomComponent(getJPanel()); jSplitPane1.setTopComponent(getSpCenter()); } return jSplitPane1; } /** * This method initializes jPanel * * @return javax.swing.JPanel */ private JPanel getJPanel() { if (jPanel == null) { jPanel = new JPanel(); jPanel.setLayout(new BorderLayout()); jPanel.add(getJJToolBarBar(), BorderLayout.NORTH); jPanel.add(getTpSouth(), BorderLayout.CENTER); } return jPanel; } }
发表评论
-
双击一个jar文件打开另一个jar文件中的main方法
2022-12-01 14:08 273做一个仅有META-INF的jar文件,其下MANIFEST. ... -
JSP网站从Tomcat7升级到Tomcat9抛出错误Unable to compile class for JSP] with root cause
2020-03-05 13:10 1044一个历史遗留的JSP网站,部署在Tomcat7上,一切正常 现 ... -
解决JTextPane设定其Background颜色无法导出正确的HTML的问题
2018-06-26 18:09 1344设定foreground代码如下: SimpleAttribu ... -
java和mysql的week周次对应方法
2018-04-13 13:43 1112MYSQL方法: select dt,if(month(dt) ... -
使用WindowBuilder来代替VisualEditor
2016-07-02 10:54 1@wbp.factory 标记static方法为Compone ... -
Eclipse Mars.2 refactory rename提示大量syntax error,编译器却无error仅warning
2016-07-01 12:26 762折腾半天,发现还是'_'作为包名和变量名的问题 最终把所有的' ... -
java8中的getTimeZone表现与java7中不同
2015-01-13 17:44 1050原来的代码中使用TimeZone.setDefault(Tim ... -
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
2013-05-27 15:56 8878需求:要直接使用SWING来抓高拍仪的图,亦即支持摄像头。 曾 ... -
Eclipse+Subclipse插件,设定一个文件取消其版本控制,添加到svn:ignor。
2013-03-14 23:15 4992原始帖子见: http://www.oschina.net/q ... -
tomcat:A docBase *** inside the host appBase has been specified...问题及解决
2013-01-15 18:33 13460eclipse galileo升级到indigo,发布项目到t ... -
ftp4j连接Microsoft FTP Service 7.5的list错误it.sauronsoftware.ftp4j.FTPListParse问题及解决
2012-11-12 18:28 3365源代码参见前几篇的附件。 FTP服务器准备从cuteFTP换 ... -
深圳地铁线路大图-PNG格式
2011-06-25 12:04 1996上网找一圈,只有老图,在官方网站上也没有能下载的图片格式,于是 ... -
从MYSQL的binlog恢复指定的SQL语句,解决中文乱码问题。
2011-04-09 21:24 3462系统错误导致3天中的部分数据被错误覆盖,只能从MYSQL的bi ... -
eclipst+tomcat 发布多个互相依赖的project问题
2010-10-28 16:32 1626若一个Dynamic Web project的java bui ... -
JAVA自动更新下载FTP服务器上的文件,带Swing进度。
2010-05-24 17:56 6050使用ftp4j-1.5,见http://www.saurons ... -
OY!原来是JAVA的BUG呀~~~在SwingWorker中嵌套调用SwingWorker的死锁问题解决方法。
2010-05-08 14:18 1253java6update18开始,在一个SwingWorker的 ... -
20100426,放弃EJB,转向轻量级的Hessian
2010-04-28 15:25 1788公司系统的远程调用层从EJB2.1转换为Hessian了,现正 ... -
设定窗口的默认按钮按键:ESC和ENTER等按键
2010-03-03 17:44 1582在Google上查到的代码见下面的链接 http://www. ... -
JSplitPane用代码调用OneTouchExpand/Collapse
2009-10-26 15:49 1091直接设定: getJsp1().setDividerLocat ... -
WeekselectPanel选择一年中的某周
2009-10-24 23:20 1207系统要增加工作计划功能,让每个营业部每周末分派下周本部门每个人 ...
相关推荐
c904417ef980d9da9eabe32d217623a2.part1
game_patch_1.30.21.13210.pak
Java多线程,线程安全(同步锁、异步锁)
图书管理系统前端静态资源
教育机构绩效管理与绩效考核制度
华为MA5626/MA562空库文件
可以通过这个简易的demo来,锻炼刚开始接触JAVA的朋友们。 首先需要有JAVA开发环境,安装了JDK。 此代码展示了如何设置游戏面板、加载图像资源、初始化游戏状态、处理键盘输入以改变方向、更新游戏状态、检测碰撞和苹果收集等基本功能1。请注意,为了运行这个程序,你需要准备相应的图片资源(dot.png, food.png, head.png),并将其放置在正确的路径下(这里假设是src/resources/目录)。如果你没有这些图片文件,可以使用任何你喜欢的图片代替,或者直接绘制矩形作为替代
"单相Boost PFC电路双闭环控制策略仿真研究:电感电流内环与输出电压双环控制的运行特性及功率因数校正效果展示",单相boost PFC电路仿真 功率因数校正 采用双闭环控制方式 电感电流内环+输出电压双环控制 电路运行特性良好,如效果图所示 ,核心关键词:单相boost PFC电路仿真; 功率因数校正; 双闭环控制方式; 电感电流内环; 输出电压双环控制; 电路运行特性。,"双闭环控制单相Boost PFC电路仿真:电感电流与输出电压协同优化"
改进A星算法:优化路径规划,剔除冗余节点,平滑转折点,对比优化前后结果,改进A星算法 剔除冗余节点,光滑转折点 对比优化前后路径。 ,核心关键词:改进A星算法; 剔除冗余节点; 光滑转折点; 对比优化前后路径。,"优化A星算法:剔除冗余节点,平滑转折点,对比优化路径效果"
项目已获导师指导并通过的高分毕业设计项目,可作为课程设计和期末大作业,下载即用无需修改,项目完整确保可以运行。 包含:项目源码、数据库脚本、软件工具等,该项目可以作为毕设、课程设计使用,前后端代码都在里面。 该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。 项目都经过严格调试,确保可以运行!可以放心下载 技术组成 语言:java 开发环境:idea 数据库:MySql8.0 部署环境:Tomcat(建议用 7.x 或者 8.x 版本),maven 数据库工具:navicat
基于滑膜控制的无人车辆多车道变换轨迹跟踪与路径规划——MATLAB仿真实现,基于滑膜控制无人车辆轨迹跟踪控制 复现滑膜控制 多车道变,MATLAB仿真 路径规划 无人船无人机 SMC控制 Sliding mode controller for trajectory tracking ,基于滑膜控制的无人车辆轨迹跟踪; 复现滑膜控制; 多车道变换; MATLAB仿真; 无人船无人机路径规划; SMC控制; Sliding mode controller。,基于滑膜控制的无人车辆多车道轨迹跟踪控制及仿真研究
基于定子磁链定向矢量控制策略的双馈风力发电系统研究:直接转矩输入与双PWM变换器控制,双馈风力发电系统,双pwm变器控制系统,采用直接转矩输入代替风力发电机。 (1)转子侧采用基于定子磁链定向的矢量控制策略,对d轴进行定向,采用双闭环控制结构,外环为速度环,内环为电流控制环。 (2)网侧采用基于dq解耦直接功率控制,使转子侧以单位功率因数消耗能量,功率因数为1。 (3)右侧加了转子电流过流保护电路(crowbar),并设置了一些参数突变,以便研究了双馈风力发电机在外界干扰下各转矩、功率、电压等波形变化。 附带说明 ,双馈风力发电系统; 双PWM变换器控制; 矢量控制策略; 功率因数1; 转子电流过流保护; 波形变化。,双馈风力发电系统:双PWM变换器直接转矩控制技术研究
2025年小学《义务教育道德与法治课程标准(2022年版)》试卷附含答案.docx
2025年义务教育新课程标准生物(2022年版)必考试题含答案.docx
单相ANPC仿真-逆变器通用-matlab/SIMetrix
数字农场项目建设方案.pptx
python国产进口电影票房榜单数据可视化(可视化大屏)
1.项目简介 基于JavaEE超市管理系统-可用于毕设-课程设计-练手学习。本系统利用网络沟通、计算机信息存储管理,有着与传统的方式所无法替代的优点。比如计算检索速度特别快、可靠性特别高、存储容量特别大、保密性特别好、可保存时间特别长、成本特别低等。 2.项目技术栈 • 数据库:MySQL • 开发工具:IDEA • 数据连接池:Druid • Web容器:Apache Tomcat • 项目管理工具:Maven • 版本控制工具:Git • 后端技术:Servlet+JDBC+Web+JSP • 前端框架:LayUI、HTML、CSS、Jquery 3.项目运行部分截图 4.项目配套万字文档 1.项目简介 根据系统需求与系统功能的分析,可以把系统总体分为:学生信息管理、专业信息管理、课程信息管理、学院信息管理等几大功能模块。每个模块分别定义了多个功能。可用下图的总体功能模块图表示 2.项目技术栈 • 数据库:MySQL • 开发工具:IDEA或Eclipse • 数据连接池:Druid • Web容器:Apache Tomcat •
1、文件内容:acpid-sysvinit-2.0.19-9.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/acpid-sysvinit-2.0.19-9.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、安装指导:私信博主,全程指导安装
数字化校园系统开发定制各个子功能清单模板.docx