자바 파일 일괄 이름 변경
15367 단어 Java일괄 이름 바 꾸 기
사고 분석:
1.먼저 그림 을 보 려 면 JLabel 컨트롤 이 사용자 에 게 지시 하 는 정 보 를 표시 해 야 합 니 다.세 개의 JTextField 컨트롤 은 선택 한 경 로 를 표시 하고 파일 이름 템 플 릿 을 입력 하면 확장 자 를 입력 합 니 다.두 개의 JButton 컨트롤 은 각각 폴 더 를 탐색 하고 이름 을 바 꾸 기 시작 합 니 다.하나의 JSeparator 컨트롤 은 분할 선 을 표시 하고 하나의 JSpinner 컨트롤 은 시작 번 호 를 표시 합 니 다.JScrollpane 컨트롤 을 용기 로 사용 하고 그 안에 JTable 컨트롤 을 설치 하여 오래된 파일 이름과 새 파일 이름 을 표시 합 니 다.2.모형 층 을 다시 본다.먼저 탐색 단 추 를 누 르 는 이벤트 처리 방법 을 정의 합 니 다.이 방법 에서 JFileChooser 파일 선택 기 를 만 들 고 JFileChooser 류 의 setFileSelectionMode()방법 으로 폴 더 만 선택 하고 JFileChooser 류 의 showOpenDialog()디 스 플레이 를 통 해 대화 상 자 를 엽 니 다.사용자 가 확인 단 추 를 누 르 면 JFileChooser 류 의 getSelected File()방법 으로 선택 한 폴 더 를 가 져 오고 마지막 으로 JTextField 컨트롤 의 setText()방법 으로 폴 더 정 보 를 표시 합 니 다.3.FileFilter 인 터 페 이 스 를 실현 하기 위해 클래스 를 정의 합 니 다.이러한 구조 방법 에서 파일 확장 자 를 저장 한 다음 하나의 방법 을 정의 합 니 다.이 방법 에서 String 류 의 ends With()방법 으로 파일 확장 자 를 걸 러 냅 니 다.4.그리고 시작 단 추 를 누 르 는 이벤트 처리 방법 을 정의 합 니 다.먼저 JTextField 컨트롤 의 getText()방법 으로 템 플 릿 문자열 을 가 져 옵 니 다.비어 있 으 면 JOptionPane 류 의 showMessageDialog()방법 으로 템 플 릿 입력 을 알려 주 고 DefaultTableModel 대상 을 만 들 고 JTable 류 의 getModel()방법 으로 표 데이터 모델 을 가 져 옵 니 다.JTable 류 의 setRowCount(0)를 사용 합 니 다.방법 은 표 데 이 터 를 지우 고 JSpinner 류 의 getValue()방법 으로 시작 번 호 를 가 져 옵 니 다.String 류 의 index Of 방법 으로 첫 번 째'\#'의 색인 을 가 져 옵 니 다.String 류 의 substring()방법 으로 템 플 릿 의 숫자 자리 차지 문자열 을 가 져 옵 니 다.String 류 의 replace()방법 으로 템 플 릿 의 숫자 자리 차지 문자열 을 지정 한 형식 으로 바 꿉 니 다.String 클래스 의 toLowerCase()방법 을 규범화 하기 위해 사용자 가 입력 한 확장 자 를 소문 자로 변환 합 니 다.사용자 가"."를 입력 하지 않 으 면 추가 하고 File 클래스 의 listFiles()방법 으로 폴 더 의 파일 목록 배열 을 가 져 옵 니 다.foreach()를 사용 하여 각 파일 을 반복 하고 String 클래스 의 format()방법 으로 각 파일 이름 을 포맷 합 니 다.DefaultTableModel 류 의 addRow()방법 을 사용 하여 파일 의 오래된 이름과 새 이름 을 표 의 데이터 모델 에 추가 하고 File 류 의 getParentFile()방법 으로 대상 파일 이 있 는 폴 더 대상 을 가 져 와 File 대상 을 만 들 고 새로운 파일 이름 으로 초기 화 하 며 마지막 으로 File 류 의 renameTo()방법 으로 파일 이름 을 바 꿉 니 다.코드 는 다음 과 같 습 니 다:
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileFilter;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JSeparator;
import javax.swing.JSpinner;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;
import javax.swing.table.DefaultTableModel;
import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import java.awt.Insets;
/**
*
*
* @author
*/
public class RenameFiles extends JFrame {
/**
*
*/
private static final long serialVersionUID = 4534371106024773867L;
private final class ExtNameFileFilter implements FileFilter {
private String extName;
public ExtNameFileFilter(String extName) {
this.extName = extName;//
}
@Override
public boolean accept(File pathname) {
//
if (pathname.getName().toUpperCase()
.endsWith(extName.toUpperCase()))
return true;
return false;
}
}
private JPanel contentPane;
private JTextField forderField;
private JTextField templetField;
private File dir;
private JTable table;
private JTextField extNameField;
private JSpinner startSpinner;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
RenameFiles frame = new RenameFiles();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public RenameFiles() {
setResizable(false);
setTitle(" ");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 383, 409);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
GridBagLayout gbl_contentPane = new GridBagLayout();
gbl_contentPane.columnWidths = new int[] { 72, 54, 60, 87, 91, 0 };
gbl_contentPane.rowHeights = new int[] { 25, 25, 10, 25, 24, 25, 2,
216, 0 };
gbl_contentPane.columnWeights = new double[] { 0.0, 0.0, 0.0, 0.0, 0.0,
Double.MIN_VALUE };
gbl_contentPane.rowWeights = new double[] { 0.0, 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, Double.MIN_VALUE };
contentPane.setLayout(gbl_contentPane);
JLabel label = new JLabel();
label.setText(" :");
GridBagConstraints gbc_label = new GridBagConstraints();
gbc_label.fill = GridBagConstraints.VERTICAL;
gbc_label.insets = new Insets(0, 0, 5, 5);
gbc_label.gridwidth = 3;
gbc_label.gridx = 1;
gbc_label.gridy = 0;
contentPane.add(label, gbc_label);
JLabel label_1 = new JLabel();
label_1.setText(" :");
GridBagConstraints gbc_label_1 = new GridBagConstraints();
gbc_label_1.anchor = GridBagConstraints.EAST;
gbc_label_1.fill = GridBagConstraints.VERTICAL;
gbc_label_1.insets = new Insets(0, 0, 5, 5);
gbc_label_1.gridx = 0;
gbc_label_1.gridy = 1;
contentPane.add(label_1, gbc_label_1);
forderField = new JTextField();
forderField.setText("");
GridBagConstraints gbc_forderField = new GridBagConstraints();
gbc_forderField.fill = GridBagConstraints.HORIZONTAL;
gbc_forderField.insets = new Insets(0, 0, 5, 5);
gbc_forderField.gridwidth = 3;
gbc_forderField.gridx = 1;
gbc_forderField.gridy = 1;
contentPane.add(forderField, gbc_forderField);
JButton button = new JButton();
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
do_button_actionPerformed(e);
}
});
button.setText(" ");
GridBagConstraints gbc_button = new GridBagConstraints();
gbc_button.anchor = GridBagConstraints.NORTHWEST;
gbc_button.insets = new Insets(0, 0, 5, 0);
gbc_button.gridx = 4;
gbc_button.gridy = 1;
contentPane.add(button, gbc_button);
JSeparator separator_1 = new JSeparator();
GridBagConstraints gbc_separator_1 = new GridBagConstraints();
gbc_separator_1.fill = GridBagConstraints.BOTH;
gbc_separator_1.insets = new Insets(0, 0, 5, 0);
gbc_separator_1.gridwidth = 5;
gbc_separator_1.gridx = 0;
gbc_separator_1.gridy = 2;
contentPane.add(separator_1, gbc_separator_1);
JLabel label_5 = new JLabel();
label_5.setText(" # , * :");
GridBagConstraints gbc_label_5 = new GridBagConstraints();
gbc_label_5.fill = GridBagConstraints.VERTICAL;
gbc_label_5.insets = new Insets(0, 0, 5, 0);
gbc_label_5.gridwidth = 5;
gbc_label_5.gridx = 0;
gbc_label_5.gridy = 3;
contentPane.add(label_5, gbc_label_5);
JLabel label_3 = new JLabel();
label_3.setText(" :");
GridBagConstraints gbc_label_3 = new GridBagConstraints();
gbc_label_3.anchor = GridBagConstraints.EAST;
gbc_label_3.fill = GridBagConstraints.VERTICAL;
gbc_label_3.insets = new Insets(0, 0, 5, 5);
gbc_label_3.gridx = 0;
gbc_label_3.gridy = 4;
contentPane.add(label_3, gbc_label_3);
templetField = new JTextField();
templetField.setText("catrestaurant###");
GridBagConstraints gbc_templetField = new GridBagConstraints();
gbc_templetField.anchor = GridBagConstraints.SOUTH;
gbc_templetField.fill = GridBagConstraints.HORIZONTAL;
gbc_templetField.insets = new Insets(0, 0, 5, 5);
gbc_templetField.gridwidth = 3;
gbc_templetField.gridx = 1;
gbc_templetField.gridy = 4;
contentPane.add(templetField, gbc_templetField);
JLabel label_4 = new JLabel();
label_4.setText(" :");
GridBagConstraints gbc_label_4 = new GridBagConstraints();
gbc_label_4.fill = GridBagConstraints.VERTICAL;
gbc_label_4.insets = new Insets(0, 0, 5, 5);
gbc_label_4.gridx = 0;
gbc_label_4.gridy = 5;
contentPane.add(label_4, gbc_label_4);
startSpinner = new JSpinner();
GridBagConstraints gbc_startSpinner = new GridBagConstraints();
gbc_startSpinner.fill = GridBagConstraints.HORIZONTAL;
gbc_startSpinner.insets = new Insets(0, 0, 5, 5);
gbc_startSpinner.gridx = 1;
gbc_startSpinner.gridy = 5;
contentPane.add(startSpinner, gbc_startSpinner);
JLabel label_2 = new JLabel();
label_2.setText(" :");
GridBagConstraints gbc_label_2 = new GridBagConstraints();
gbc_label_2.fill = GridBagConstraints.HORIZONTAL;
gbc_label_2.insets = new Insets(0, 0, 5, 5);
gbc_label_2.gridx = 2;
gbc_label_2.gridy = 5;
contentPane.add(label_2, gbc_label_2);
JButton startButton = new JButton();
startButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
do_startButton_actionPerformed(e);
}
});
extNameField = new JTextField();
extNameField.setText("jpg");
GridBagConstraints gbc_extNameField = new GridBagConstraints();
gbc_extNameField.fill = GridBagConstraints.HORIZONTAL;
gbc_extNameField.insets = new Insets(0, 0, 5, 5);
gbc_extNameField.gridx = 3;
gbc_extNameField.gridy = 5;
contentPane.add(extNameField, gbc_extNameField);
startButton.setText(" ");
GridBagConstraints gbc_startButton = new GridBagConstraints();
gbc_startButton.anchor = GridBagConstraints.NORTH;
gbc_startButton.insets = new Insets(0, 0, 5, 0);
gbc_startButton.gridx = 4;
gbc_startButton.gridy = 5;
contentPane.add(startButton, gbc_startButton);
JSeparator separator_2 = new JSeparator();
GridBagConstraints gbc_separator_2 = new GridBagConstraints();
gbc_separator_2.anchor = GridBagConstraints.NORTH;
gbc_separator_2.fill = GridBagConstraints.HORIZONTAL;
gbc_separator_2.insets = new Insets(0, 0, 5, 0);
gbc_separator_2.gridwidth = 5;
gbc_separator_2.gridx = 0;
gbc_separator_2.gridy = 6;
contentPane.add(separator_2, gbc_separator_2);
JScrollPane scrollPane = new JScrollPane();
GridBagConstraints gbc_scrollPane = new GridBagConstraints();
gbc_scrollPane.fill = GridBagConstraints.BOTH;
gbc_scrollPane.gridwidth = 5;
gbc_scrollPane.gridx = 0;
gbc_scrollPane.gridy = 7;
contentPane.add(scrollPane, gbc_scrollPane);
table = new JTable();
table.setModel(new DefaultTableModel(new Object[][] {}, new String[] {
" ", " " }));
scrollPane.setViewportView(table);
}
/**
*
*
* @param e
*/
protected void do_button_actionPerformed(ActionEvent e) {
JFileChooser chooser = new JFileChooser();//
//
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int option = chooser.showOpenDialog(this);//
if (option == JFileChooser.APPROVE_OPTION) {
dir = chooser.getSelectedFile();//
} else {
dir = null;
}
forderField.setText(dir + "");//
}
/**
*
*
* @param e
*/
protected void do_startButton_actionPerformed(ActionEvent e) {
String templet = templetField.getText();//
if (templet.isEmpty()) {
JOptionPane.showMessageDialog(this, " ", " ",
JOptionPane.WARNING_MESSAGE);
return;
}
//
DefaultTableModel model = (DefaultTableModel) table.getModel();
model.setRowCount(0);//
int bi = (Integer) startSpinner.getValue();//
int index = templet.indexOf("#");// “#”
String code = templet.substring(index);//
//
templet = templet.replace(code, "%0" + code.length() + "d");
String extName = extNameField.getText().toLowerCase();
if (extName.indexOf(".") == -1)
extName = "." + extName;
//
File[] files = dir.listFiles(new ExtNameFileFilter(extName));
for (File file : files) {//
//
String name = String.format(templet, bi++) + extName;
//
model.addRow(new String[] { file.getName(), name });
File parentFile = file.getParentFile();//
File newFile = new File(parentFile, name);
file.renameTo(newFile);//
}
}
}
효과 그림:이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.