mirror of https://github.com/apache/lucene.git
SOLR-4914: Use Properties.store(OutputStream, String) for back compatibility
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1502481 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3f8064c90a
commit
8b0a481fd3
|
@ -17,7 +17,6 @@ package org.apache.solr.core;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import com.google.common.base.Charsets;
|
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import org.apache.solr.common.SolrException;
|
import org.apache.solr.common.SolrException;
|
||||||
import org.apache.solr.util.IOUtils;
|
import org.apache.solr.util.IOUtils;
|
||||||
|
@ -29,8 +28,6 @@ import java.io.FileInputStream;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.io.OutputStreamWriter;
|
|
||||||
import java.io.Writer;
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
|
@ -79,9 +76,7 @@ public class CorePropertiesLocator implements CoresLocator {
|
||||||
OutputStream os = null;
|
OutputStream os = null;
|
||||||
try {
|
try {
|
||||||
os = new FileOutputStream(propfile);
|
os = new FileOutputStream(propfile);
|
||||||
Writer writer = new OutputStreamWriter(os, Charsets.UTF_8);
|
p.store(os, "Written by CorePropertiesLocator on " + new Date());
|
||||||
p.store(writer, "Written by CorePropertiesLocator on " + new Date());
|
|
||||||
writer.close();
|
|
||||||
}
|
}
|
||||||
catch (IOException e) {
|
catch (IOException e) {
|
||||||
logger.error("Couldn't persist core properties to {}: {}", propfile.getAbsolutePath(), e);
|
logger.error("Couldn't persist core properties to {}: {}", propfile.getAbsolutePath(), e);
|
||||||
|
|
Loading…
Reference in New Issue