`
houzhaowei
  • 浏览: 496092 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

cannot make any changes to the index (it was opened with readOnly = true)

 
阅读更多

此异常为用IndexReader 删除索引所报的错。

异常原因:如异常所说:index 是以只读方式打开的,不可写。

解决方案:

IndexReader indexReader = IndexReader.open(FSDirectory.open(indexPath),false);

 

在打开IndexReader时 open 方法里多传一个参数并设置为false。 此参数即为 Readonly。

分享到:
评论
1 楼 randychao2008 2011-03-02  
@Test
private static void buildIndex() throws IOException {
File file = new File("c:\\index");

Directory indexDir = FSDirectory.open(file);//存储到磁盘
IndexWriter write = new IndexWriter(indexDir,new StandardAnalyzer(Version.LUCENE_30),true,MaxFieldLength.LIMITED);

for(int i =0;i<10;i++){
Document doc = new Document();
doc.add(new Field("content","word",Store.YES,Index.ANALYZED));
doc.add(new Field("name","doc",Store.YES,Index.ANALYZED));
write.addDocument(doc);
write.close();
}
}
请问 Document doc = new Document();应该写在循环体内还是循环体外;因为我用Luke查看了两种情况,出现不同的显示。有什么区别呢?谢谢

相关推荐

    .NET中TextBox控件设置ReadOnly=true后台取不到值三种解决方法

    当TextBox设置了ReadOnly=”true” 后,要是在前台为控件添加了值,后台是取不到的,值为“空” 原理没想通,说不清楚微软是出于什么考虑的,不过有时是要我们能通过前台脚本来填充值,并不希望用户修改其控件内容,...

    VclZip pro v3.10.1

    This was due to a problem where it would be freed automatically if there was a problem with the ArchiveStream when trying to open it as a zip file (possibly corrupt). Best practice is that ...

    asp.net TextBox控件设置ReadOnly后,不能回传。

    很奇怪,以前都没有过这样的怪问题,在别人机器上都能正常,想到可能和ASP.NET的版本... 解决的方法: &lt;asp id=”Username” runat=”server” ReadOnly=”True”&gt;&lt;/asp&gt; 去掉ReadOnly=”True”,改成 &lt;asp:textbox

    个人通讯录管理系统 vfp

    thisform.txt邮政编码.readonly=.f. thisform.txt性别.readonly=.f. thisform.txt手机.readonly=.f. thisform.txt小灵通.readonly=.f. thisform.txt住宅电话.readonly=.f. thisform.txtqq.readonly=.f. thisform....

    DataGridView使用整理

    `DataGridView1.Columns(1).ReadOnly = True` `DataGridView1.Rows(2).ReadOnly = True` `DataGridView1(0, 0).ReadOnly = True` 在 C# 中,我们可以使用以下代码: `DataGridView1.Columns[1].ReadOnly = true;` ...

    FlexGraphics_V_1.79_D4-XE10.2_Downloadly.ir

    Added TFlexFileFormat.StreamSupport property (default True), which difines, is it necessary to open file stream or give the file name only. - FIX: If the TCustomProp.Assign method calls when the ...

    vb.net & C#.net DataGridView使用说明

    DataGridView1.Columns(1).ReadOnly = True DataGridView1.Rows(2).ReadOnly = True DataGridView1(0, 0).ReadOnly = True ``` ```csharp DataGridView1.Columns[1].ReadOnly = true; DataGridView1.Rows[2]....

    QTP处理readonly控件

    ### QTP处理readonly控件 在自动化测试领域中,QTP(Quick Test Professional)是一款非常受欢迎的工具,它主要用于功能测试、回归测试等自动化测试任务。对于某些特定类型的控件,如只读(readonly)控件,QTP提供...

    图书管理系统 vfp

    thisform.txt邮政编码.readonly=.f. thisform.txt性别.readonly=.f. thisform.txt手机.readonly=.f. thisform.txt小灵通.readonly=.f. thisform.txt住宅电话.readonly=.f. thisform.txtqq.readonly=.f. thisform....

    基于jQuery的轻便版日期控件[可精确到分钟]

    input type=text maxlength="10" onfocus="jQuery(this).calendar()" readonly="true"/&gt;&lt;br/&gt; 显示日期时间: &lt;input type=text maxlength="16" onfocus="jQuery(this).calendar()" readonly="true"/&gt...

    2009 达内Unix学习笔记

    集合了 所有的 Unix命令大全 ...telnet 192.168.0.23 自己帐号 sd08077-you0 ftp工具 192.168.0.202 tools-toolss ... 各个 shell 可互相切换 ksh:$ sh:$ csh:guangzhou% bash:bash-3.00$ ... 命令和参数之间必需用空格隔...

    JS中如何设置readOnly的值

    在网页中我们有时候需要控制文本输入框的...但是在JS中我们则不能食用txt_name.readonly=”readonly”来设置该属性,由于JS是区分大小写的,所以,在调用该属性的时候,我们必须使用txt_name.readOnly=true来设置。 当

    C#datagridview用法

    * Columns[ColumnIndex].ReadOnly:设置指定列是否可编辑。 * Rows[RowIndex].ReadOnly:设置指定行是否可编辑。 * [Row, Column].ReadOnly:设置指定单元格是否可编辑。 例如: dataGridView1.ReadOnly = true; /...

    凭证管理系统(凭证管理系统)

    凭证管理系统 ... ReadOnly = True TabOrder = 1 TitleFont.Charset = DEFAULT_CHARSET TitleFont.Color = clBlue TitleFont.Height = -11 TitleFont.Name = 'MS Sans Serif' TitleFont.Style = []

    The MySQL server is running with the --read-only option so it cannot execute this statement

    MySQL服务器在运行时可能由于配置了`--read-only`选项,导致无法执行写入操作,从而出现"1209 - The MySQL server is running with the --read-only option so it cannot execute this statement"的错误。...

    DataGridView行列操作

    DataGridView1.Columns[1].ReadOnly = true; // 设置第3行整行单元格为只读 DataGridView1.Rows[2].ReadOnly = true; // 设置[0, 0]单元格为只读 DataGridView1[0, 0].ReadOnly = true; ``` - 使用Edit...

    基于C#的WinForm中DataGridView控件操作汇总

    如果希望DataGridView控件内所有单元格都不可编辑,可以设置DataGridView1.ReadOnly = true;这样用户的新增行操作和删除行操作也将被屏蔽。 如果希望DataGridView控件内某个单元格不可编辑,可以使用Columns或Rows...

    基于C_的WinForm中DataGridView控件操作汇总.doc

    若要使整个`DataGridView`变为只读,可以设置`ReadOnly`属性为`true`,如:`DataGridView1.ReadOnly = true;`这不仅阻止用户编辑单元格,还会禁用添加和删除行的功能。 2. 部分单元格或列设置只读: 若要仅使特定...

Global site tag (gtag.js) - Google Analytics