- 浏览: 90546 次
- 性别:
- 来自: 深圳
最新评论
-
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 242做一个仅有META-INF的jar文件,其下MANIFEST. ... -
JSP网站从Tomcat7升级到Tomcat9抛出错误Unable to compile class for JSP] with root cause
2020-03-05 13:10 978一个历史遗留的JSP网站,部署在Tomcat7上,一切正常 现 ... -
解决JTextPane设定其Background颜色无法导出正确的HTML的问题
2018-06-26 18:09 1318设定foreground代码如下: SimpleAttribu ... -
java和mysql的week周次对应方法
2018-04-13 13:43 1103MYSQL方法: 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 729折腾半天,发现还是'_'作为包名和变量名的问题 最终把所有的' ... -
java8中的getTimeZone表现与java7中不同
2015-01-13 17:44 1042原来的代码中使用TimeZone.setDefault(Tim ... -
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
2013-05-27 15:56 8868需求:要直接使用SWING来抓高拍仪的图,亦即支持摄像头。 曾 ... -
Eclipse+Subclipse插件,设定一个文件取消其版本控制,添加到svn:ignor。
2013-03-14 23:15 4975原始帖子见: http://www.oschina.net/q ... -
tomcat:A docBase *** inside the host appBase has been specified...问题及解决
2013-01-15 18:33 13433eclipse galileo升级到indigo,发布项目到t ... -
ftp4j连接Microsoft FTP Service 7.5的list错误it.sauronsoftware.ftp4j.FTPListParse问题及解决
2012-11-12 18:28 3347源代码参见前几篇的附件。 FTP服务器准备从cuteFTP换 ... -
深圳地铁线路大图-PNG格式
2011-06-25 12:04 1958上网找一圈,只有老图,在官方网站上也没有能下载的图片格式,于是 ... -
从MYSQL的binlog恢复指定的SQL语句,解决中文乱码问题。
2011-04-09 21:24 3431系统错误导致3天中的部分数据被错误覆盖,只能从MYSQL的bi ... -
eclipst+tomcat 发布多个互相依赖的project问题
2010-10-28 16:32 1601若一个Dynamic Web project的java bui ... -
JAVA自动更新下载FTP服务器上的文件,带Swing进度。
2010-05-24 17:56 6023使用ftp4j-1.5,见http://www.saurons ... -
OY!原来是JAVA的BUG呀~~~在SwingWorker中嵌套调用SwingWorker的死锁问题解决方法。
2010-05-08 14:18 1241java6update18开始,在一个SwingWorker的 ... -
20100426,放弃EJB,转向轻量级的Hessian
2010-04-28 15:25 1769公司系统的远程调用层从EJB2.1转换为Hessian了,现正 ... -
设定窗口的默认按钮按键:ESC和ENTER等按键
2010-03-03 17:44 1573在Google上查到的代码见下面的链接 http://www. ... -
JSplitPane用代码调用OneTouchExpand/Collapse
2009-10-26 15:49 1061直接设定: getJsp1().setDividerLocat ... -
WeekselectPanel选择一年中的某周
2009-10-24 23:20 1192系统要增加工作计划功能,让每个营业部每周末分派下周本部门每个人 ...
相关推荐
python入门-30.寻找列表中只出现一次的数字——寻找单身狗.py
linux优化笔记,配套视频:https://www.bilibili.com/list/474327672?sid=4496133&spm_id_from=333.999.0.0&desc=1
知识付费系统-直播+讲师入驻+课程售卖+商城系统-v2.1.9版本搭建以及资源分享下载,CRMEB知识付费分销与直播营销系统是由西安众邦科技自主开发的一款在线教育平台,该系统不仅拥有独立的知识产权,还采用了先进的ThinkPhp5.0框架和Vue前端技术栈,集成了在线直播教学及课程分销等多种功能,旨在为用户提供全方位的学习体验,默认解压密码youyacaocom
美妆神域-JAVA-基于springBoot美妆神域设计与实现
原生js制作Google粘土logo动画涂鸦代码.zip
golin 扫描工具使用, 检查系统漏洞、web程序漏洞
原生态纯js图片网格鼠标悬停放大显示特效代码下载.zip
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
去水印web端独立版web
原生js制作左侧浮动可折叠在线客服代码.zip
Chrome 谷歌浏览器下载
全新完整版H5商城系统源码 自己花钱买的,亲测可用,需要自行下载 H5商城系统设置是实现商城基本功能的核心部分,涵盖了从网站配置、短信和支付配置,到商品、工单、订单、分站和提现管理等多个模块的设置。以下是详细的设置指南,帮助您快速上手并高效管理商城系统。 测试环境:Nginx+PHP7.0+MySQL5.6 1. 网站配置 设置商城名称、LOGO、标题、联系方式和SEO关键词等,确保商城专业和易于搜索。 2. 短信配置 配置短信接口和模板,用于发送订单通知、验证码等,提升用户体验。 3. 支付接口配置 配置微信、支付宝等支付接口,填写API密钥和回调地址,确保支付流畅。 4. 商品分类管理 对商品进行分类和排序,设置分类名称和图标,便于用户查找商品。 5. 商品管理 添加和管理商品信息、规格、图片等,确保商品信息准确丰富。 6. 工单管理 查看和回复用户工单,记录售后问题,提升用户服务质量。 7. 订单管理 查看订单详情,更新订单状态,支持批量导出,方便订单跟踪。 8. 分站管理 创建不同区域分站,设置权限,统一管理各区域市场。 9. 提现管理
apk安装包
原生js选项卡插件自定义图片滑动选项卡切换.zip
宗教信息佛教佛寺寺庙庵堂相关数据集提供了全国各个地区省市县各个佛教寺庙的详细信息。这些数据不仅包括寺庙的名称和负责人姓名,还涵盖了所属省份、地级市、区县、具体地址、建立日期以及支派类别等关键信息。该数据集整理了超过3万条样本,为研究中国佛教寺庙的分布、历史和文化提供了丰富的第一手资料。这些信息有助于了解佛教在中国的传播和发展,以及寺庙在社会和文化中的作用。数据的整理和提供,对于宗教学、社会学、历史学和文化研究等领域的学者来说,是一个宝贵的资源。
1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。 替换数据可以直接使用,注释清楚,适合新手
简单的 Python 版本管理pyenvpyenv 可让您轻松在多个 Python 版本之间切换。它简单、不引人注目,并遵循 UNIX 传统,即使用单一用途的工具来做好一件事。该项目由rbenv和 ruby-build分叉而来,并针对 Python 进行了修改。pyenv 的作用是什么......允许您根据每个用户更改全局 Python 版本。为每个项目的 Python 版本提供支持。允许您使用环境变量覆盖 Python 版本。一次搜索多个 Python 版本的命令。这可能有助于使用tox跨 Python 版本进行测试。与 pythonbrew 和 pythonz 相比,pyenv没有……依赖于Python本身。pyenv由纯shell脚本制作。不存在Python的引导问题。需要加载到你的 shell 中。相反,pyenv 的 shim 方法通过向你的 中添加目录来工作PATH。管理虚拟环境。当然,你可以自己创建虚拟环境 ,或者使用pyenv-virtualenv 来自动化该过程。目录安装获取 PyenvLinux/UNIX自动安装程序基本
Notepad-v2.20工具,是替代Notepad++的首选工具
原生js随机图片拖拽排序代码.zip
更快、更好、更稳定的Redis桌面(GUI)管理客户端,兼容Windows、Mac、Linux,性能出众,轻松加载海量键值