use pluginhelper and add versionchecker...

dev
502647092 2015-09-02 12:06:40 +08:00
parent 22676fdf8e
commit fb898dbfa0
7 changed files with 186 additions and 381 deletions

View File

@ -1,31 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>

31
pom.xml
View File

@ -23,6 +23,27 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<configuration>
<minimizeJar>true</minimizeJar>
<artifactSet>
<includes>
<include>cn.citycraft:PluginHelper</include>
</includes>
</artifactSet>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
@ -30,6 +51,10 @@
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>citycraft-repo</id>
<url>http://ci.citycraft.cn:8800/jenkins/plugin/repository/everything/</url>
</repository>
</repositories>
<dependencies>
<dependency>
@ -38,6 +63,12 @@
<type>jar</type>
<version>1.8.3-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>cn.citycraft</groupId>
<artifactId>PluginHelper</artifactId>
<type>jar</type>
<version>1.0</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@ -6,8 +6,9 @@ package cn.citycraft.Yum;
import org.bukkit.plugin.java.JavaPlugin;
import cn.citycraft.Yum.commands.CommandHandler;
import cn.citycraft.Yum.config.FileConfig;
import cn.citycraft.Yum.manager.YumManager;
import cn.citycraft.config.FileConfig;
import cn.citycraft.utils.VersionChecker;
/**
* MC
@ -19,8 +20,9 @@ public class Yum extends JavaPlugin {
public FileConfig config;
@Override
public void onLoad() {
config = new FileConfig(this, "config.yml");
public void onDisable() {
YumManager.repo.cacheToJson(config);
config.save();
}
@Override
@ -30,12 +32,12 @@ public class Yum extends JavaPlugin {
this.getCommand("yum").setTabCompleter(cmdhandler);
yumgr = new YumManager(this);
YumManager.repo.jsonToCache(config);
new VersionChecker(this);
}
@Override
public void onDisable() {
YumManager.repo.cacheToJson(config);
config.save();
public void onLoad() {
config = new FileConfig(this, "config.yml");
}
}

View File

@ -1,198 +0,0 @@
package cn.citycraft.Yum.config;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Reader;
import java.io.Writer;
import java.util.logging.Logger;
import org.apache.commons.lang.Validate;
import org.bukkit.Bukkit;
import org.bukkit.configuration.Configuration;
import org.bukkit.configuration.InvalidConfigurationException;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.configuration.file.YamlConstructor;
import org.bukkit.configuration.file.YamlRepresenter;
import org.bukkit.plugin.Plugin;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.representer.Representer;
import com.google.common.base.Charsets;
import com.google.common.io.Files;
/**
* An implementation of {@link Configuration} which saves all files in Yaml.
* Note that this
* implementation is not synchronized.
*/
public class FileConfig extends YamlConfiguration {
protected File file;
protected Logger loger;
protected Plugin plugin;
protected final DumperOptions yamlOptions = new DumperOptions();
protected final Representer yamlRepresenter = new YamlRepresenter();
protected final Yaml yaml = new Yaml(new YamlConstructor(), yamlRepresenter, yamlOptions);
private FileConfig(File file) {
Validate.notNull(file, "File cannot be null");
this.file = file;
loger = Bukkit.getLogger();
init(file);
}
private FileConfig(InputStream stream) {
loger = Bukkit.getLogger();
init(stream);
}
public FileConfig(Plugin plugin, File file) {
Validate.notNull(file, "File cannot be null");
Validate.notNull(plugin, "Plugin cannot be null");
this.plugin = plugin;
this.file = file;
loger = plugin.getLogger();
check(file);
init(file);
}
public FileConfig(Plugin plugin, String filename) {
this(plugin, new File(plugin.getDataFolder(), filename));
}
private void check(File file) {
String filename = file.getName();
InputStream stream = plugin.getResource(filename);
try {
if (!file.exists()) {
file.getParentFile().mkdirs();
if (stream == null) {
file.createNewFile();
loger.info("配置文件 " + filename + " 不存在 创建新文件...");
} else {
plugin.saveResource(filename, true);
loger.info("配置文件 " + filename + " 不存在 从插件释放...");
}
} else {
if (stream == null) {
return;
}
FileConfig newcfg = new FileConfig(stream);
FileConfig oldcfg = new FileConfig(file);
String newver = newcfg.getString("version");
String oldver = oldcfg.getString("version");
if (newver != null && newver != oldver) {
loger.warning("配置文件: " + filename + " 版本 " + oldver + " 过低 正在升级到 " + newver + " ...");
try {
oldcfg.save(new File(file.getParent(), filename + ".backup"));
loger.warning("配置文件: " + filename + " 已备份为 " + filename + ".backup !");
} catch (IOException e) {
loger.warning("配置文件: " + filename + "备份失败!");
}
plugin.saveResource(filename, true);
loger.info("配置文件: " + filename + "升级成功!");
}
}
} catch (IOException e) {
loger.info("配置文件 " + filename + " 创建失败...");
}
}
private void init(File file) {
Validate.notNull(file, "File cannot be null");
FileInputStream stream;
try {
stream = new FileInputStream(file);
init(stream);
} catch (FileNotFoundException e) {
loger.info("配置文件 " + file.getName() + " 不存在...");
}
}
private void init(InputStream stream) {
Validate.notNull(stream, "Stream cannot be null");
try {
this.load(new InputStreamReader(stream, Charsets.UTF_8));
} catch (IOException ex) {
loger.info("配置文件 " + file.getName() + " 读取错误...");
} catch (InvalidConfigurationException ex) {
loger.info("配置文件 " + file.getName() + " 格式错误...");
}
}
@Override
public void load(File file) throws FileNotFoundException, IOException, InvalidConfigurationException {
Validate.notNull(file, "File cannot be null");
final FileInputStream stream = new FileInputStream(file);
load(new InputStreamReader(stream, Charsets.UTF_8));
}
@Override
public void load(Reader reader) throws IOException, InvalidConfigurationException {
BufferedReader input = (reader instanceof BufferedReader) ? (BufferedReader) reader : new BufferedReader(reader);
StringBuilder builder = new StringBuilder();
try {
String line;
while ((line = input.readLine()) != null) {
builder.append(line);
builder.append('\n');
}
} finally {
input.close();
}
loadFromString(builder.toString());
}
public void reload() {
init(file);
}
public void save() {
if (file == null) {
loger.info("未定义配置文件路径 保存失败!");
}
try {
this.save(file);
} catch (IOException e) {
loger.info("配置文件 " + file.getName() + " 保存错误...");
e.printStackTrace();
}
}
@Override
public void save(File file) throws IOException {
Validate.notNull(file, "File cannot be null");
Files.createParentDirs(file);
String data = saveToString();
Writer writer = new OutputStreamWriter(new FileOutputStream(file), Charsets.UTF_8);
try {
writer.write(data);
} finally {
writer.close();
}
}
@Override
public String saveToString() {
yamlOptions.setIndent(options().indent());
yamlOptions.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
yamlRepresenter.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
String header = buildHeader();
String dump = yaml.dump(getValues(false));
if (dump.equals(BLANK_CONFIG)) {
dump = "";
}
return header + dump;
}
}

View File

@ -12,7 +12,7 @@ import org.bukkit.plugin.Plugin;
/**
*
*
*
* @author
* 20158216:08:09
*/
@ -25,7 +25,7 @@ public class DownloadManager {
/**
*
*
*
* @param url
* -
* @return
@ -37,7 +37,7 @@ public class DownloadManager {
/**
*
*
*
* @param url
* -
* @return
@ -48,32 +48,19 @@ public class DownloadManager {
private String getPer(int per) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < 11; i++) {
if (per > i) {
for (int i = 0; i < 11; i++)
if (per > i)
sb.append("==");
} else if (per == i) {
else if (per == i)
sb.append("> ");
} else {
else
sb.append(" ");
}
}
return sb.toString();
}
/**
*
*
* @param urlstring
* -
* @return
*/
public boolean run(String urlstring) {
return run(null, urlstring);
}
/**
*
*
*
* @param sender
* -
* @param urlstring
@ -86,7 +73,7 @@ public class DownloadManager {
/**
*
*
*
* @param sender
* -
* @param urlstring
@ -108,7 +95,7 @@ public class DownloadManager {
/**
*
*
*
* @param sender
* -
* @param url
@ -120,9 +107,8 @@ public class DownloadManager {
public boolean run(CommandSender sender, URL url, File file) {
BufferedInputStream in = null;
FileOutputStream fout = null;
if (sender == null) {
if (sender == null)
sender = Bukkit.getConsoleSender();
}
try {
sender.sendMessage("§6开始下载: §3" + getFileName(url));
sender.sendMessage("§6下载地址: §3" + url.toString());
@ -138,9 +124,8 @@ public class DownloadManager {
file.getParentFile().mkdirs();
sender.sendMessage("§6创建新目录: §d" + file.getParentFile().getAbsolutePath());
}
if (file.exists()) {
if (file.exists())
file.delete();
}
file.createNewFile();
sender.sendMessage("§6创建新文件: §d" + file.getAbsolutePath());
fout = new FileOutputStream(file);
@ -152,12 +137,11 @@ public class DownloadManager {
downloaded += count;
fout.write(data, 0, count);
int percent = (int) (downloaded * 100L / fileLength);
if (percent % 10 == 0) {
if (percent % 10 == 0)
if (fileLength < 102400 || System.currentTimeMillis() - time > 1000) {
sender.sendMessage(String.format("§6已下载: §a" + getPer(percent / 10) + " %s%%", percent));
time = System.currentTimeMillis();
}
}
}
sender.sendMessage("§6文件: §a " + file.getName() + " 下载完成!");
return true;
@ -167,10 +151,10 @@ public class DownloadManager {
return false;
} finally {
try {
if (in != null) {
if (in != null)
in.close();
if (fout != null)
fout.close();
}
} catch (Exception ex) {
}
}
@ -178,7 +162,18 @@ public class DownloadManager {
/**
*
*
*
* @param urlstring
* -
* @return
*/
public boolean run(String urlstring) {
return run(null, urlstring);
}
/**
*
*
* @param urlstring
* -
* @param file
@ -191,7 +186,7 @@ public class DownloadManager {
/**
*
*
*
* @param url
* -
* @param file

View File

@ -23,10 +23,10 @@ import org.bukkit.plugin.PluginDescriptionFile;
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.UnknownDependencyException;
import cn.citycraft.Yum.utils.StringUtil;
import com.google.common.base.Joiner;
import cn.citycraft.Yum.utils.StringUtil;
/**
*
*
@ -41,7 +41,7 @@ public class PluginsManager {
/**
*
*
*
* @param sender
* -
* @param plugin
@ -54,7 +54,7 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
* @return
@ -65,53 +65,47 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
*/
public void disable(Plugin plugin) {
if ((plugin.isEnabled()) && (plugin != null)) {
if ((plugin != null) && (plugin.isEnabled()))
Bukkit.getPluginManager().disablePlugin(plugin);
}
}
/**
*
*/
public void disableAll() {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins()) {
if (!isIgnored(plugin)) {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins())
if (!isIgnored(plugin))
disable(plugin);
}
}
}
/**
*
*
*
* @param plugin
* -
*/
public void enable(Plugin plugin) {
if ((!plugin.isEnabled()) && (plugin != null)) {
if ((plugin != null) && (!plugin.isEnabled()))
Bukkit.getPluginManager().enablePlugin(plugin);
}
}
/**
*
*/
public void enableAll() {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins()) {
if (!isIgnored(plugin)) {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins())
if (!isIgnored(plugin))
enable(plugin);
}
}
}
/**
*
*
*
* @param plugin
* -
* @return
@ -122,7 +116,7 @@ public class PluginsManager {
/**
* ()
*
*
* @param plugin
* -
* @param includeVersions
@ -132,15 +126,14 @@ public class PluginsManager {
public String getFormattedName(Plugin plugin, boolean includeVersions) {
ChatColor color = plugin.isEnabled() ? ChatColor.GREEN : ChatColor.RED;
String pluginName = color + plugin.getName();
if (includeVersions) {
if (includeVersions)
pluginName = pluginName + " (" + plugin.getDescription().getVersion() + ")";
}
return pluginName;
}
/**
*
*
*
* @param name
* -
* @return
@ -151,7 +144,7 @@ public class PluginsManager {
/**
* ()
*
*
* @param name
* -
* @return
@ -162,7 +155,7 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
* @return
@ -181,15 +174,14 @@ public class PluginsManager {
public List<String> getPluginNames(boolean fullName) {
List<String> plugins = new ArrayList<String>();
for (Plugin plugin : Bukkit.getPluginManager().getPlugins()) {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins())
plugins.add(fullName ? plugin.getDescription().getFullName() : plugin.getName());
}
return plugins;
}
/**
*
*
*
* @param name
* -
* @return
@ -203,7 +195,7 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
* @return
@ -217,9 +209,8 @@ public class PluginsManager {
Iterator<Entry<String, Map<String, Object>>> commandsIt = commands.entrySet().iterator();
while (commandsIt.hasNext()) {
Entry<String, Map<String, Object>> thisEntry = commandsIt.next();
if (thisEntry != null) {
if (thisEntry != null)
parsedCommands.add(thisEntry.getKey());
}
}
}
if (parsedCommands.isEmpty())
@ -229,7 +220,7 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
* @return
@ -240,22 +231,21 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
* @return
*/
public boolean isIgnored(String plugin) {
for (String name : new ArrayList<String>()) {
for (String name : new ArrayList<String>())
if (name.equalsIgnoreCase(plugin))
return true;
}
return false;
}
/**
*
*
*
* @param sender
* -
* @param name
@ -265,12 +255,10 @@ public class PluginsManager {
public boolean load(CommandSender sender, String name) {
Plugin target = null;
String filename = null;
if (sender == null) {
if (sender == null)
sender = Bukkit.getConsoleSender();
}
if (!name.endsWith(".jar")) {
if (!name.endsWith(".jar"))
filename = name + ".jar";
}
File pluginDir = new File("plugins");
File updateDir = new File(pluginDir, "update");
if (!pluginDir.isDirectory()) {
@ -282,8 +270,8 @@ public class PluginsManager {
if (!pluginFile.isFile() && !new File(updateDir, filename).isFile()) {
pluginFile = null;
for (File file : pluginDir.listFiles()) {
if (file.getName().endsWith(".jar")) {
for (File file : pluginDir.listFiles())
if (file.getName().endsWith(".jar"))
try {
PluginDescriptionFile desc = main.getPluginLoader().getPluginDescription(file);
if (desc.getName().equalsIgnoreCase(name)) {
@ -292,8 +280,6 @@ public class PluginsManager {
}
} catch (InvalidDescriptionException e) {
}
}
}
if (pluginFile == null) {
sender.sendMessage("§6载入: §c在插件目录和更新目录均未找到 " + name + " 插件 请确认文件是否存在!");
return false;
@ -332,7 +318,7 @@ public class PluginsManager {
/**
*
*
*
* @param sender
* -
* @param plugin
@ -347,7 +333,7 @@ public class PluginsManager {
/**
*
*
*
* @param plugin
* -
* @return
@ -359,28 +345,24 @@ public class PluginsManager {
/**
*
*/
public void reloadAll(CommandSender sender) {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins()) {
if (!isIgnored(plugin)) {
reload(sender, plugin);
}
}
public void reloadAll() {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins())
if (!isIgnored(plugin))
reload(plugin);
}
/**
*
*/
public void reloadAll() {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins()) {
if (!isIgnored(plugin)) {
reload(plugin);
}
}
public void reloadAll(CommandSender sender) {
for (Plugin plugin : Bukkit.getPluginManager().getPlugins())
if (!isIgnored(plugin))
reload(sender, plugin);
}
/**
*
*
*
* @param sender
* -
* @param plugin
@ -390,37 +372,38 @@ public class PluginsManager {
@SuppressWarnings("unchecked")
public boolean unload(CommandSender sender, Plugin plugin) {
String name = plugin.getName();
if (sender == null) {
if (sender == null)
sender = Bukkit.getConsoleSender();
}
PluginManager pluginManager = Bukkit.getPluginManager();
SimpleCommandMap commandMap = null;
List<Plugin> plugins = null;
Map<String, Plugin> lookupNames = null;
Map<String, Command> knownCommands = null;
if (pluginManager != null) {
try {
Field pluginsField = pluginManager.getClass().getDeclaredField("plugins");
pluginsField.setAccessible(true);
plugins = (List<Plugin>) pluginsField.get(pluginManager);
Field lookupNamesField = pluginManager.getClass().getDeclaredField("lookupNames");
lookupNamesField.setAccessible(true);
lookupNames = (Map<String, Plugin>) lookupNamesField.get(pluginManager);
Field commandMapField = pluginManager.getClass().getDeclaredField("commandMap");
commandMapField.setAccessible(true);
commandMap = (SimpleCommandMap) commandMapField.get(pluginManager);
Field knownCommandsField = SimpleCommandMap.class.getDeclaredField("knownCommands");
knownCommandsField.setAccessible(true);
knownCommands = (Map<String, Command>) knownCommandsField.get(commandMap);
} catch (Exception e) {
sender.sendMessage("§4异常: §c" + e.getMessage() + " 插件 " + name + " 卸载失败!");
return false;
}
if (pluginManager == null) {
sender.sendMessage("§4异常: §c插件管理类为Null!");
return false;
}
for (Plugin next : pluginManager.getPlugins()) {
try {
Field pluginsField = pluginManager.getClass().getDeclaredField("plugins");
pluginsField.setAccessible(true);
plugins = (List<Plugin>) pluginsField.get(pluginManager);
Field lookupNamesField = pluginManager.getClass().getDeclaredField("lookupNames");
lookupNamesField.setAccessible(true);
lookupNames = (Map<String, Plugin>) lookupNamesField.get(pluginManager);
Field commandMapField = pluginManager.getClass().getDeclaredField("commandMap");
commandMapField.setAccessible(true);
commandMap = (SimpleCommandMap) commandMapField.get(pluginManager);
Field knownCommandsField = SimpleCommandMap.class.getDeclaredField("knownCommands");
knownCommandsField.setAccessible(true);
knownCommands = (Map<String, Command>) knownCommandsField.get(commandMap);
} catch (Exception e) {
sender.sendMessage("§4异常: §c" + e.getMessage() + " 插件 " + name + " 卸载失败!");
return false;
}
for (Plugin next : pluginManager.getPlugins())
if (next.getName().equals(name)) {
pluginManager.disablePlugin(next);
if ((plugins != null) && (plugins.contains(next))) {
@ -447,14 +430,13 @@ public class PluginsManager {
sender.sendMessage("§6卸载: §a注销插件 " + name + " 的所有命令!");
}
}
}
sender.sendMessage("§6卸载: §a插件 " + name + " 已成功卸载!");
return true;
}
/**
*
*
*
* @param plugin
* -
* @return

View File

@ -39,7 +39,7 @@ public abstract class SQLHelper {
/**
*
*
*
* @param username
* -
* @param password
@ -75,12 +75,10 @@ public abstract class SQLHelper {
if (!dbConnection())
return false;
String kv = "";
for (Entry<String, String> kvs : fields.entrySet()) {
for (Entry<String, String> kvs : fields.entrySet())
kv += "`" + kvs.getKey() + "` " + kvs.getValue() + " NOT NULL , ";
}
kv = kv.substring(0, kv.length() - 2);// 根据String的索引提取子串
String sql = "CREATE TABLE `" + tableName + "` ( " + kv + (Conditions == "" ? "" : " , " + Conditions)
+ " ) ENGINE = InnoDB DEFAULT CHARSET=UTF8";
String sql = "CREATE TABLE `" + tableName + "` ( " + kv + (Conditions == "" ? "" : " , " + Conditions) + " ) ENGINE = InnoDB DEFAULT CHARSET=UTF8";
try {
PreparedStatement state = dbconn.prepareStatement(sql);
state.executeUpdate();
@ -139,9 +137,8 @@ public abstract class SQLHelper {
return false;
String selCondition = "";
if (selConditions != null && !selConditions.isEmpty()) {
for (Entry<String, String> kvs : selConditions.entrySet()) {
for (Entry<String, String> kvs : selConditions.entrySet())
selCondition += kvs.getKey() + "='" + kvs.getValue() + "', ";
}
selCondition = " WHERE " + selCondition.substring(0, selCondition.length() - 2);// 根据String的索引提取子串
}
String sql = "DELETE FROM `" + tableName + "` " + selCondition;
@ -171,9 +168,8 @@ public abstract class SQLHelper {
return false;
String selCondition = "";
if (selConditions != null && !selConditions.isEmpty()) {
for (Entry<String, String> kvs : selConditions.entrySet()) {
for (Entry<String, String> kvs : selConditions.entrySet())
selCondition += kvs.getKey() + "='" + kvs.getValue() + "', ";
}
selCondition = " WHERE " + selCondition.substring(0, selCondition.length() - 2);// 根据String的索引提取子串
}
String sql = "SELECT * FROM " + tableName + selCondition;
@ -231,18 +227,14 @@ public abstract class SQLHelper {
*
* @return mapList
*/
@SuppressWarnings({
"rawtypes",
"unchecked"
})
@SuppressWarnings({ "rawtypes", "unchecked" })
public List dbSelect(String tableName, List<String> fields, String selCondition) {
if (!dbConnection())
return null;
List mapInList = new ArrayList();
String selFields = "";
for (int i = 0; i < fields.size(); ++i) {
for (int i = 0; i < fields.size(); ++i)
selFields += fields.get(i) + ", ";
}
String selFieldsTem = selFields.substring(0, selFields.length() - 2);// 根据String的索引提取子串
String sql = "SELECT " + selFieldsTem + " FROM `" + tableName + "`" + selCondition == "" ? "" : " WHERE " + selCondition;
try {
@ -255,9 +247,8 @@ public abstract class SQLHelper {
}
while (dbresult.next()) {
Map selResult = new HashMap();
for (String col : fields) {
for (String col : fields)
selResult.put(col, dbresult.getString(col));
}
mapInList.add(selResult);
}
} catch (Exception e) {
@ -284,9 +275,8 @@ public abstract class SQLHelper {
String selFieldsTem = fields;
String selCondition = "";
if (selConditions != null && !selConditions.isEmpty()) {
for (Entry<String, String> kvs : selConditions.entrySet()) {
for (Entry<String, String> kvs : selConditions.entrySet())
selCondition += kvs.getKey() + "='" + kvs.getValue() + "', ";
}
selCondition = " WHERE " + selCondition.substring(0, selCondition.length() - 2);// 根据String的索引提取子串
}
String sql = "SELECT " + selFieldsTem + " FROM " + tableName + selCondition + " limit 1";
@ -308,9 +298,7 @@ public abstract class SQLHelper {
* @param reCount
* @return booltruefalse
*/
@SuppressWarnings({
"rawtypes"
})
@SuppressWarnings({ "rawtypes" })
public boolean dbUpdate(String tabName, HashMap reCount, String upCondition) {
if (!dbConnection())
return false;
@ -402,24 +390,24 @@ public abstract class SQLHelper {
print("执行SQL文件: " + file.getName() + " ...");
br = new BufferedReader(new FileReader(file));
state = dbconn.createStatement();
while ((sql = br.readLine()) != null) {
if (sql != "") {
while ((sql = br.readLine()) != null)
if (sql != "")
try {
state.executeUpdate(sql);
} catch (Exception e) {
print("数据库操作出错: " + e.getMessage());
print("SQL语句: " + sql);
}
}
}
return true;
} catch (Exception e) {
print("执行SQL文件 " + file.getName() + "出错: " + e.getMessage());
return false;
} finally {
try {
state.close();
br.close();
if (state != null)
state.close();
if (br != null)
br.close();
} catch (Exception e) {
}
}