大量的文本文件如何进行分类查找?

是这样的,我现在有很多文字类的资料需要整理,他们每篇文章都应该被同时归到很多类里面,那么此时我应该整理他们?应该怎样做到方便的分类查找?
我在豆瓣网和歪酷博客上看到有自己添加标签的功能,使自己的文章分类,那么我也可以这样吗?应该怎么做?
多谢各位的支持与帮助!!!我的电脑不好,所以请帮助我的人也尽量写的通俗点,因为专业词汇我不太懂。
十分感谢!!!

首先建立需要的参考文献的数据库,运行程序后选择新建Endnote文档,键入文件名和选择所在的位置。文献条目的来源可以直接导入在internet上检索medline后保存的文件(选择相应的过滤器,一般都用Pubmed)或者用Endnote直接链接pubmed数据库进行检索的结果。导入的数据库的条目可以删除、排序、定位、查找重复的条目等。点击条目可以查看细节,包括摘要。也可以根据需要手工添加条目,即填入作者、题目、杂志名、发表的年、卷、期和页、摘要等信息。
在Word撰写文章时,将光标放在需要插入引用的地方,选择endnote插件小工具条中的(insert seleceted citation),然后endnote将自动根据顺序插入变化,并将相应的文章引用格式(需要在endnote中自行指定,主要根据杂志或者文章要求而定)自动插入到文件结束部分(所有引用的文章都放在文件最后的位置上)的相应位置。如果删除或者添加引用文件,endnote可以自动更新序号和相应的引用文章,当然也可以选择手工操作,这在文件很长,引用文献有很多的情况下可以节省时间。
温馨提示:内容为网友见解,仅供参考
第1个回答  2006-03-14
找一个total commander,可以很方便的搞定文章检索和分类。它还支持用属性查找,这样你就可以很方便的把同类文章找出来了。本回答被提问者采纳
第2个回答  2006-03-11
echo off
cls

:EXIST
echo Searching Files....
if exist *.rar goto moverar
if exist *.exe goto moveexe
if exist *.zip goto movezip
if exist *.swf goto moveswf
if exist *.msi goto movemsi
if exist *.mp3 goto movemp3
goto END

:moverar
echo Find WinRAR Files!
mkdir "All WinRAR Files"\"%date%">tmp.tmp
dir *.rar /b>"All WinRAR Files"\rarlog.tmp
echo Moveing...
move *.rar "All WinRAR Files"\"%date%">tmp.tmp
dir "All WinRAR Files"\"%date%"/b>"All WinRAR Files"\rarmovedlog.tmp
fc "All WinRAR Files"\rarlog.tmp "All WinRAR Files"\rarmovedlog.tmp>>"All WinRAR Files"\"Lost WinRAR Files.txt"
del "All WinRAR Files"\rarlog.tmp
del "All WinRAR Files"\rarmovedlog.tmp
del tmp.tmp
tree /f "All WinRAR Files">"WinRAR Index.txt"
goto EXIST

:movezip
echo Find WinZIP Files!
mkdir "All WinZIP Files"\"%date%">tmp.tmp
dir *.zip /b>"All WinZIP Files"\ziplog.tmp
echo Moveing...
move *.zip "All WinZIP Files"\"%date%">tmp.tmp
dir "All WinZIP Files"\"%date%"/b>"All WinZIP Files"\zipmovedlog.tmp
fc "All WinZIP Files"\ziplog.tmp "All WinZIP Files"\zipmovedlog.tmp>>"All WinZIP Files"\"Lost WinZIP Files.txt"
del "All WinZIP Files"\ziplog.tmp
del "All WinZIP Files"\zipmovedlog.tmp
del tmp.tmp
tree /f "All WinZIP Files">"WinZIP Index.txt"
goto EXIST

:moveexe
echo Find EXE Files!
mkdir "All EXE Files"\"%date%">tmp.tmp
dir *.exe /b>"All EXE Files"\exelog.tmp
echo Moveing...
move *.exe "All EXE Files"\"%date%">tmp.tmp
dir "All EXE Files"\"%date%"/b>"All EXE Files"\exemovedlog.tmp
fc "All EXE Files"\exelog.tmp "All EXE Files"\exemovedlog.tmp>>"All EXE Files"\"Lost EXE Files.txt"
del "All EXE Files"\exelog.tmp
del "All EXE Files"\exemovedlog.tmp
del tmp.tmp
tree /f "All EXE Files">"EXE Index.txt"
goto EXIST

:moveswf
echo Find FLASH Files!
mkdir "All FLASH Files"\"%date%">tmp.tmp
dir *.swf /b>"All FLASH Files"\swflog.tmp
echo Moveing...
move *.swf "All FLASH Files"\"%date%">tmp.tmp
dir "All FLASH Files"\"%date%"/b>"All FLASH Files"\swfmovedlog.tmp
fc "All FLASH Files"\swflog.tmp "All FLASH Files"\swfmovedlog.tmp>>"All FLASH Files"\"Lost FLASH Files.txt"
del "All FLASH Files"\swflog.tmp
del "All FLASH Files"\swfmovedlog.tmp
del tmp.tmp
tree /f "All FLASH Files">"FLASH Index.txt"
goto EXIST

:movemsi
echo Find Windows Install Files!
mkdir "All Windows Installer Files"\"%date%">tmp.tmp
dir *.msi /b>"All Windows Installer Files"\msilog.tmp
echo Moveing...
move *.msi "All Windows Installer Files"\"%date%">tmp.tmp
dir "All Windows Installer Files"\"%date%"/b>"All Windows Installer Files"\msimovedlog.tmp
fc "All Windows Installer Files"\msilog.tmp "All Windows Installer Files"\msimovedlog.tmp>>"All Windows Installer Files"\"Lost Windows Installer Files.txt"
del "All Windows Installer Files"\msilog.tmp
del "All Windows Installer Files"\msimovedlog.tmp
del tmp.tmp
tree /f "All Windows Installer Files">"Windows Installer Index.txt"
goto EXIST

:movemp3
echo Find MP3 Files
mkdir "All MP3 Files"\"%date%">tmp.tmp
dir *.mp3 /b>"All MP3 Files"\mp3log.tmp
echo Moveing...
move *.mp3 "All MP3 Files"\"%date%">tmp.tmp
dir "All MP3 Files"\"%date%"/b>"All MP3 Files"\mp3movedlog.tmp
fc "All MP3 Files"\mp3log.tmp "All MP3 Files"\mp3movedlog.tmp>>"All MP3 Files"\"Lost MP3 Files.txt"
del "All MP3 Files"\mp3log.tmp
del "All MP3 Files"\mp3movedlog.tmp
del tmp.tmp
tree /f "All MP3 Files">"MP3 Index.txt"
goto EXIST

:END
echo Work is done!
第3个回答  2006-03-09
用批处理帮助整理下载的文件
把下面代码部份另存为AA.BAT文件, 执行就可以了.

echo off
cls

:EXIST
echo Searching Files....
if exist *.rar goto moverar
if exist *.exe goto moveexe
if exist *.zip goto movezip
if exist *.swf goto moveswf
if exist *.msi goto movemsi
if exist *.mp3 goto movemp3
goto END

:moverar
echo Find WinRAR Files!
mkdir "All WinRAR Files"\"%date%">tmp.tmp
dir *.rar /b>"All WinRAR Files"\rarlog.tmp
echo Moveing...
move *.rar "All WinRAR Files"\"%date%">tmp.tmp
dir "All WinRAR Files"\"%date%"/b>"All WinRAR Files"\rarmovedlog.tmp
fc "All WinRAR Files"\rarlog.tmp "All WinRAR Files"\rarmovedlog.tmp>>"All WinRAR Files"\"Lost WinRAR Files.txt"
del "All WinRAR Files"\rarlog.tmp
del "All WinRAR Files"\rarmovedlog.tmp
del tmp.tmp
tree /f "All WinRAR Files">"WinRAR Index.txt"
goto EXIST

:movezip
echo Find WinZIP Files!
mkdir "All WinZIP Files"\"%date%">tmp.tmp
dir *.zip /b>"All WinZIP Files"\ziplog.tmp
echo Moveing...
move *.zip "All WinZIP Files"\"%date%">tmp.tmp
dir "All WinZIP Files"\"%date%"/b>"All WinZIP Files"\zipmovedlog.tmp
fc "All WinZIP Files"\ziplog.tmp "All WinZIP Files"\zipmovedlog.tmp>>"All WinZIP Files"\"Lost WinZIP Files.txt"
del "All WinZIP Files"\ziplog.tmp
del "All WinZIP Files"\zipmovedlog.tmp
del tmp.tmp
tree /f "All WinZIP Files">"WinZIP Index.txt"
goto EXIST

:moveexe
echo Find EXE Files!
mkdir "All EXE Files"\"%date%">tmp.tmp
dir *.exe /b>"All EXE Files"\exelog.tmp
echo Moveing...
move *.exe "All EXE Files"\"%date%">tmp.tmp
dir "All EXE Files"\"%date%"/b>"All EXE Files"\exemovedlog.tmp
fc "All EXE Files"\exelog.tmp "All EXE Files"\exemovedlog.tmp>>"All EXE Files"\"Lost EXE Files.txt"
del "All EXE Files"\exelog.tmp
del "All EXE Files"\exemovedlog.tmp
del tmp.tmp
tree /f "All EXE Files">"EXE Index.txt"
goto EXIST

:moveswf
echo Find FLASH Files!
mkdir "All FLASH Files"\"%date%">tmp.tmp
dir *.swf /b>"All FLASH Files"\swflog.tmp
echo Moveing...
move *.swf "All FLASH Files"\"%date%">tmp.tmp
dir "All FLASH Files"\"%date%"/b>"All FLASH Files"\swfmovedlog.tmp
fc "All FLASH Files"\swflog.tmp "All FLASH Files"\swfmovedlog.tmp>>"All FLASH Files"\"Lost FLASH Files.txt"
del "All FLASH Files"\swflog.tmp
del "All FLASH Files"\swfmovedlog.tmp
del tmp.tmp
tree /f "All FLASH Files">"FLASH Index.txt"
goto EXIST

:movemsi
echo Find Windows Install Files!
mkdir "All Windows Installer Files"\"%date%">tmp.tmp
dir *.msi /b>"All Windows Installer Files"\msilog.tmp
echo Moveing...
move *.msi "All Windows Installer Files"\"%date%">tmp.tmp
dir "All Windows Installer Files"\"%date%"/b>"All Windows Installer Files"\msimovedlog.tmp
fc "All Windows Installer Files"\msilog.tmp "All Windows Installer Files"\msimovedlog.tmp>>"All Windows Installer Files"\"Lost Windows Installer Files.txt"
del "All Windows Installer Files"\msilog.tmp
del "All Windows Installer Files"\msimovedlog.tmp
del tmp.tmp
tree /f "All Windows Installer Files">"Windows Installer Index.txt"
goto EXIST

:movemp3
echo Find MP3 Files
mkdir "All MP3 Files"\"%date%">tmp.tmp
dir *.mp3 /b>"All MP3 Files"\mp3log.tmp
echo Moveing...
move *.mp3 "All MP3 Files"\"%date%">tmp.tmp
dir "All MP3 Files"\"%date%"/b>"All MP3 Files"\mp3movedlog.tmp
fc "All MP3 Files"\mp3log.tmp "All MP3 Files"\mp3movedlog.tmp>>"All MP3 Files"\"Lost MP3 Files.txt"
del "All MP3 Files"\mp3log.tmp
del "All MP3 Files"\mp3movedlog.tmp
del tmp.tmp
tree /f "All MP3 Files">"MP3 Index.txt"
goto EXIST

:END
echo Work is done!
第4个回答  2006-03-10
不建议你用哪个数据库软件

批处理的方法室可以试试的

另外:最好自己抽出一些时间整理

毕竟人的大脑逻辑性还是强过电脑的

大量的文本文件如何进行分类查找?
首先建立需要的参考文献的数据库,运行程序后选择新建Endnote文档,键入文件名和选择所在的位置。文献条目的来源可以直接导入在internet上检索medline后保存的文件(选择相应的过滤器,一般都用Pubmed)或者用Endnote直接链接pubmed数据库进行检索的结果。导入的数据库的条目可以删除、排序、定位、查找重复的条目等...

如果同时搜索多个WORD文档,该如何操作?
1. 使用文件管理器:在Windows操作系统中,您可以打开文件管理器(如资源管理器)并选择要搜索的文件夹。然后,输入要搜索的关键词或短语,并在搜索结果中查看包含该关键词或短语的文档。2. 使用文档处理软件的批量搜索功能:一些文档处理软件(如Microsoft Word)提供了批量搜索功能,可以搜索多个文档的内容...

电脑中TXT文档太多而且乱,有没有什么软件可以很好的整理?
哦哦, 这是一个老问题了,放到现在的话,可以用类似于 海云笺这样的工具软件来管理TXT文本就搞定了。把每一篇 TXT 文本作为海云笺里的一篇笔记, 可以设置标签,方便的进行分类和查找,还可以同步到服务器端,这样在公司的电脑以及在家里的电脑都能够使用。TXT文件越积越多的确很烦,海云笺是不错的解决...

如何在很多word文档里搜索某一个关键词
1. 打开Word软件,使用“文件搜索”功能。在Word软件界面的左上角有一个搜索框,输入关键词,勾选“搜索整个文档”,然后按下回车键进行搜索。这个功能可以帮助你在当前打开的文档中查找关键词。2.使用Word的“高级查找”功能。如果你需要在多个Word文档中搜索关键词,可...

如何借助小工具实现电脑文件的一键归类整理?
启动文件归类.exe工具,点击一键后缀归类选项,可以选择性地排除快捷方式和执行文件的归类。这样,同类文件会自动被集中到新创建的目录下,便于查找,极大地提高了办公效率,如图所示。然而,此方法适用于普通文档,对于软件安装文件需谨慎使用,因为分类操作可能导致软件安装路径问题,影响软件的正常使用。因此,...

...词如何在很多word文档里搜索某一个关键词的文字
1. 打开“文件资源管理器”(或“我的电脑”),在其中选择包含要查找关键字的 Word 文档所在的文件夹。2. 在该文件夹窗口中,单击右上角的搜索框,并键入要查找的关键字。3. 您将看到自动在文件夹中进行搜索并列出所有包含关键字的文件。在搜索结果列表中,选择要查看的文件。4. 打开该文件后,...

如何使用一键文件归类工具整理电脑文档?
首先,你需要在电脑上下载并安装这个文件归类工具,解压缩后即可使用。安装过程十分简便,无需复杂设置。将这个工具放在包含多种文件类型的文件夹中,例如图片、Word文档、Excel、PSD、可执行文件和文本文件等,如下所示:双击运行工具的主程序,选择"一键后缀归类"功能,你可以选择不归类快捷方式和执行文件,...

怎么给word文档排序
1.2 创建文件夹结构 通过创建文件夹结构来对Word文档进行分类和排序。可以根据文档的内容、时间等因素创建不同的文件夹,将相关的文档整理到对应的文件夹中。这样可以更清晰地管理文档,并且方便查找和使用。1.3 使用标签功能 在Word文档中可以使用标签功能对文档进行分类和排序。通过给文档添加不同的标签...

如何从大量文件中挑选出我需要的一部分文件(这部分也很大)?
点击启动它,软件界面非常简单,在“Find”输入框中输入关键词,也就是在你输入完的瞬间,搜索结果在“Files”窗口中也呈现出来了。如果你要的文件类型和其他不同比较好办,用*.*(后一个是文件扩展名),比如搜文本文件就是*.txt;如果文件名和其他区别较大可以利用前面的*.*搜索(前一个*是文件...

word文档怎么进行查找
第一步:打开需要进行查找的Word文档,选中相应的文本内容;第二步:在Word界面左上角找到并点击“开始”,在界面右上角找到并点击“查找”,点击之后,会看到界面左侧出现了一个“导航”栏;第三步:我们在界左侧的导航栏处,输入想要查找的内容,就可以看到右侧的所有相应内容都被标记出来了,在左侧...

相似回答