在java中创建复制和粘贴程序?

时间:2014-01-17 02:14:37

标签: java

我是java新手,但我想创建一个专门的复制和粘贴程序,可以复制文本的某些部分(可能是记事本文件)并将它们粘贴到新文件中。具体来说,我希望程序在识别某些关键词时开始复制,并停止复制其他关键词。例如,假设每当我看到单词“cat”或“dog”时我就开始复制,并在看到单词“ate”或“jumped”时停止复制。所以假设我的文字是:“猫吃了狗。它也跳到了桌子上。”输出将是“猫狗。它也”有谁知道我怎么能写这样的程序?

1 个答案:

答案 0 :(得分:0)

由于您没有提供任何已尝试过的代码。我可以为您提供解决方案,逐步解决您的问题。

  1> Read the file word-by-word.
  2> Then check for specific word you want to start the copy at. 
  3> When you find that specific word,
    start storing all the words in a string . 
  4> while copying also
    check for the word were you want to stop copying(you can do this by
    setting a flag which will be set once you find the start word and
    will be unset once you get the stop word.).  
  5> Later copy that string variable to clipboard.

我想这符合你的要求。 如果您发布代码,开发人员将处于更好的状态来帮助您。