📄 fileopr.java
字号:
// Decompiled by DJ v3.9.9.91 Copyright 2005 Atanas Neshkov Date: 2007-5-16 21:12:04
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: FileOpr.java
package apriori;
import java.io.*;
public class FileOpr
{
public FileOpr(String s, String s1)
throws FileNotFoundException
{
if(s == "r")
fIn = new FileInputStream(s1);
if(s == "w")
fOut = new FileOutputStream(s1);
}
FileInputStream fIn;
FileOutputStream fOut;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -