I'm making a console-based Java/Groovy application that does a lot of find/replaces in text files. If, say, the program knows you replaced foo
with bar
last time, it should by default know you probably want to replace the next foo
with bar
as well. My idea was to pre-populate the input field of the What would you like to rename this to?
prompt so that you don't have to retype it unnecessarily, but I can't find an easy way to do this in Java.
Is this possible, and if so, would it be a recommended practice?
Why don't you just assume that an empty imput is equal to the last input inserted? It would be quite easier to manage that pre-filling a
stdin
..in any case if you plan to have a recent list I would suggest you to have a special character combination to tell last one or the previous and so on.