`
文章列表
一个简单的Selenium例子, 运行起来后Selenium会打开一个指定的页面,然后跳转。 package com.abczww.hs.demo; import junit.framework.TestCase; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.support.ui.ExpectedCondition; impo ...
    var table = document.getElementById("table_name");                var rows = table.rows.length;//行数       var cells = table.rows.item(0).cells.length;//列数  
当我们需要读取Jar包内的文件时,我们就不能使用new File(filePath)来读取了,因为根本无法指定这个filePath,如果说在开发时,还可以利用this.getClass().getResource()来获得文件路径,那么当打成Jar包是,路径就不存在了。 这是我们要读取文件,就需要用流的形式了,我们需要利用this.getClass().getResourceAsStream方法,以流的形式拿到Jar包中的文件: InputStream is = this.getClass().getResourceAsStream( "/templates/Temp ...
private final static String SYS_TEMP_FILE = System .getProperty("java.io.tmpdir") + "\\9884698793643198z.properties"; private static Map<String, String> fileNames = null; /** * get a file path from a system temp file. * * @param keyOfFileName * @retu ...
目前有的功能: 1. 将一个文件的所有内容读取的字符串。 2. 将字符串内容写到文件。 3. 将一个文件路径保存到一个临时文件。 4. 从临时文件读取一个文件路径。 5. 将一个字符串的首字母变小写。 package com.honda.dms.cdhp; import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java ...
小常识,就是总是忘,干脆整理下: JFileChooser fileChser = new JFileChooser(); fileChser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); int chooseFlag = fileChser.showOpenDialog(con); if (JFileChooser.APPROVE_OPTION == chooseFlag) { }
class Test { public static void main(String[] args) { char[] chars=new char[1]; String str="ABCDE1234"; chars[0]=str.charAt(0); String temp=new String(chars); if(chars[0]>='A' && chars[0]<='Z') { System.out.println(str.replaceFirst(temp,temp.toLo ...
一个java的定时器,每隔1秒钟刷新一次JLabel,5秒钟后退出系统。 private void autoExit() { Timer timer = new Timer(); timer.schedule(new TimerTask() { int MAX_COUNTER = 5; int counter = 0; @Override public void run() { if (MAX_COUNTER == counter) { if (!isExitCB.isSelected()) { Syste ...
Caused by: java.lang.ClassNotFoundException: org.aopalliance.intercept.MethodInterceptor Caused by: java.lang.NoClassDefFoundError: org/aopalliance/intercept/MethodInterceptor 原因:缺少此包aopalliance-1.0.jar Caused by: java.lang.ClassNotFoundException: org.aspectj.weaver.BCException 原因:缺少此包aspectjwea ...
今天遇到这么一个异常: Exception in thread "main" java.lang.UnsupportedOperationException at java.util.AbstractList.remove(AbstractList.java:144) at java.util.AbstractList$Itr.remove(AbstractList.java:360) at java.util.AbstractCollection.remove(AbstractCollection.java:252) at com.test.test01 ...
web.xml <?xml version="1.0"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2 ...
web.xml <?xml version="1.0"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2 ...
web.xml <?xml version="1.0"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2 ...
web.xml <?xml version="1.0"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2 ...
web.xml <?xml version="1.0"?> <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2 ...
Global site tag (gtag.js) - Google Analytics