/**
* @param args the command line arguments
* @throws java.io.IOException
*/
public static void main(String[] args) throws IOException, InterruptedException, PropertyVetoException, UnsupportedAudioFileException, LineUnavailableException {
File file = new File("CADASTRADOS.txt");
if(!file.exists()){
file.createNewFile();// TODO code application logic here
}
File dir = new File("CadastroRemedios");
if(!dir.exists()){
dir.mkdir();
}
LoginInterface inFrame = new LoginInterface();
CadastroInterface inCadas = new CadastroInterface();
TelaInicial tl = new TelaInicial(inFrame);
tl.setVisible(true);
System.out.println("Permitir Alteração");
inFrame.setVisible(true);
}
Lembredio.java 文件源码
java
阅读 17
收藏 0
点赞 0
评论 0
项目:lembredio
作者:
评论列表
文章目录