📄 gantttxtopen.java
字号:
/*************************************************************************** GanttTXTOpen - A class for open a list of task from a txt file ------------------- begin : jun 2004 copyright : (C) 2004 by Thomas Alexandre email : alexthomas(at)ganttproject.org ***************************************************************************//*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/package net.sourceforge.ganttproject.io;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.InputStreamReader;import net.sourceforge.ganttproject.GanttGraphicArea;import net.sourceforge.ganttproject.GanttProject;import net.sourceforge.ganttproject.GanttTask;import net.sourceforge.ganttproject.GanttTree2;import net.sourceforge.ganttproject.task.TaskManager;/** * @author athomas This class allo to open a list of task from a simple txt * file. Each line of the file are insert as a new task with the name as * text of the line. */public class GanttTXTOpen { /** The tree that contains data */ GanttTree2 treePanel; /** The main frame */ GanttProject prj; /** The graphic area */ GanttGraphicArea area; private final TaskManager myTaskManager; /** Constructor. */ public GanttTXTOpen(GanttTree2 tree, GanttProject appli, GanttGraphicArea gra, TaskManager taskManager) { // Affect fields of the class this(taskManager); this.treePanel = tree; this.prj = appli; this.area = gra; } /** Constructor with a task manager. */ public GanttTXTOpen(TaskManager taskManager) { myTaskManager = taskManager; } /** Load tasks list from a text file. */ public boolean load(File f) { try { // Open a stream BufferedReader br = new BufferedReader(new InputStreamReader( new FileInputStream(f))); while (br.ready()) { // Read each lines String sTaskName = br.readLine(); // The test is used to skip the white line (with no text) if (!sTaskName.equals("")) { // Create the task GanttTask task = myTaskManager.createTask(); task.setColor(area.getTaskColor()); task.setName(sTaskName); task.setLength(1); myTaskManager.registerTask(task); treePanel.addObject(task, null, -1); } } } catch (Exception e) { return false; } return true; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -