fileutiltest.java

来自「我想下载一个东西」· Java 代码 · 共 35 行

JAVA
35
字号
package com.ecyrd.jspwiki;import junit.framework.*;import java.io.*;import java.util.*;import org.apache.log4j.*;public class FileUtilTest extends TestCase{    public FileUtilTest( String s )    {        super( s );        Properties props = new Properties();        try        {            props.load( TestEngine.findTestProperties() );            PropertyConfigurator.configure(props);        }        catch( IOException e ) {}    }    public void setUp()        throws Exception    {    }    public void tearDown()    {    }    public void testReadContentsLatin1()        throws Exception    {        String src = "abc邃

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?