Hi this is a save function for my program, this is the first time using "file dialog function" it is throwing an error I am not sure how to fix it.
The constructor FileDialog(Frame, String, int) is ambiguous
import java.awt.FileDialog;
public class save {
private void initialize() {
FileDialog fileOutputDialog =
new FileDialog(null, "Output File", FileDialog.SAVE);
}
}