11 changed files with 1281 additions and 252 deletions
@ -0,0 +1,66 @@ |
|||||
|
package com.ruoyi.api; |
||||
|
|
||||
|
import java.io.*; |
||||
|
import java.nio.charset.StandardCharsets; |
||||
|
import java.util.*; |
||||
|
|
||||
|
public class ReadTextData { |
||||
|
|
||||
|
// 定义一个类来存储每条记录
|
||||
|
static class Record { |
||||
|
String author; |
||||
|
String organization; |
||||
|
String title; |
||||
|
|
||||
|
@Override |
||||
|
public String toString() { |
||||
|
return "Record{" + |
||||
|
"author='" + author + '\'' + |
||||
|
", organization='" + organization + '\'' + |
||||
|
", title='" + title + '\'' + |
||||
|
'}'; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public static void main(String[] args) { |
||||
|
// 替换为你的实际文件路径
|
||||
|
String filePath = "D:\\project\\gyx\\tupudata\\csv\\test.txt"; // Windows 路径示例
|
||||
|
// String filePath = "/Users/yourname/data.txt"; // Mac/Linux 路径示例
|
||||
|
|
||||
|
List<Record> records = new ArrayList<>(); |
||||
|
|
||||
|
try (BufferedReader reader = new BufferedReader( |
||||
|
new InputStreamReader(new FileInputStream(filePath), StandardCharsets.UTF_8))) { |
||||
|
|
||||
|
String line; |
||||
|
Record currentRecord = null; |
||||
|
int lineCount = 0; |
||||
|
|
||||
|
while ((line = reader.readLine()) != null) { |
||||
|
line = line.trim(); // 去除首尾空格
|
||||
|
if (line.isEmpty()) continue; // 跳过空行
|
||||
|
|
||||
|
lineCount++; |
||||
|
if (line.startsWith("作者:")) { |
||||
|
currentRecord = new Record(); |
||||
|
currentRecord.author = line.substring(3); // 去掉"作者:"
|
||||
|
records.add(currentRecord); |
||||
|
} else if (line.startsWith("单位:") && currentRecord != null) { |
||||
|
currentRecord.organization = line.substring(3); // 去掉"单位:"
|
||||
|
} else if (line.startsWith("题名:") && currentRecord != null) { |
||||
|
currentRecord.title = line.substring(3); // 去掉"题名:"
|
||||
|
} |
||||
|
// 如果格式不匹配,可添加日志或报错
|
||||
|
} |
||||
|
|
||||
|
} catch (IOException e) { |
||||
|
System.err.println("读取文件时发生错误:" + e.getMessage()); |
||||
|
e.printStackTrace(); |
||||
|
} |
||||
|
|
||||
|
// 打印所有解析出的数据
|
||||
|
for (int i = 0; i < records.size(); i++) { |
||||
|
System.out.println("第" + (i+1) + "条: " + records.get(i)); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
File diff suppressed because it is too large
@ -0,0 +1,44 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
|
||||
|
// 查询文献管理列表
|
||||
|
export function listArticle(query) { |
||||
|
return request({ |
||||
|
url: '/system/article/list', |
||||
|
method: 'get', |
||||
|
params: query |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 查询文献管理详细
|
||||
|
export function getArticle(id) { |
||||
|
return request({ |
||||
|
url: '/system/article/' + id, |
||||
|
method: 'get' |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 新增文献管理
|
||||
|
export function addArticle(data) { |
||||
|
return request({ |
||||
|
url: '/system/article', |
||||
|
method: 'post', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 修改文献管理
|
||||
|
export function updateArticle(data) { |
||||
|
return request({ |
||||
|
url: '/system/article', |
||||
|
method: 'put', |
||||
|
data: data |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 删除文献管理
|
||||
|
export function delArticle(id) { |
||||
|
return request({ |
||||
|
url: '/system/article/' + id, |
||||
|
method: 'delete' |
||||
|
}) |
||||
|
} |
||||
@ -0,0 +1,399 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
||||
|
<el-form-item label="文献名称" prop="name"> |
||||
|
<el-input |
||||
|
v-model="queryParams.name" |
||||
|
placeholder="请输入文献名称" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="本地地址" prop="openUrl"> |
||||
|
<el-input |
||||
|
v-model="queryParams.openUrl" |
||||
|
placeholder="请输入本地地址" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="在线地址" prop="localUrl"> |
||||
|
<el-input |
||||
|
v-model="queryParams.localUrl" |
||||
|
placeholder="请输入在线地址" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="来源id" prop="sourceId"> |
||||
|
<el-input |
||||
|
v-model="queryParams.sourceId" |
||||
|
placeholder="请输入来源id" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="来源名称" prop="sourceName"> |
||||
|
<el-input |
||||
|
v-model="queryParams.sourceName" |
||||
|
placeholder="请输入来源名称" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="目标id" prop="targetId"> |
||||
|
<el-input |
||||
|
v-model="queryParams.targetId" |
||||
|
placeholder="请输入目标id" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="目标名称" prop="tagertName"> |
||||
|
<el-input |
||||
|
v-model="queryParams.tagertName" |
||||
|
placeholder="请输入目标名称" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="文献作者" prop="authors"> |
||||
|
<el-input |
||||
|
v-model="queryParams.authors" |
||||
|
placeholder="请输入文献作者" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="文献关键词" prop="keywords"> |
||||
|
<el-input |
||||
|
v-model="queryParams.keywords" |
||||
|
placeholder="请输入文献关键词" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="机构" prop="agencies"> |
||||
|
<el-input |
||||
|
v-model="queryParams.agencies" |
||||
|
placeholder="请输入机构" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="摘要" prop="summary"> |
||||
|
<el-input |
||||
|
v-model="queryParams.summary" |
||||
|
placeholder="请输入摘要" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="urls" prop="urls"> |
||||
|
<el-input |
||||
|
v-model="queryParams.urls" |
||||
|
placeholder="请输入urls" |
||||
|
clearable |
||||
|
@keyup.enter.native="handleQuery" |
||||
|
/> |
||||
|
</el-form-item> |
||||
|
<el-form-item> |
||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<el-row :gutter="10" class="mb8"> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="primary" |
||||
|
plain |
||||
|
icon="el-icon-plus" |
||||
|
size="mini" |
||||
|
@click="handleAdd" |
||||
|
v-hasPermi="['system:article:add']" |
||||
|
>新增</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="success" |
||||
|
plain |
||||
|
icon="el-icon-edit" |
||||
|
size="mini" |
||||
|
:disabled="single" |
||||
|
@click="handleUpdate" |
||||
|
v-hasPermi="['system:article:edit']" |
||||
|
>修改</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="danger" |
||||
|
plain |
||||
|
icon="el-icon-delete" |
||||
|
size="mini" |
||||
|
:disabled="multiple" |
||||
|
@click="handleDelete" |
||||
|
v-hasPermi="['system:article:remove']" |
||||
|
>删除</el-button> |
||||
|
</el-col> |
||||
|
<el-col :span="1.5"> |
||||
|
<el-button |
||||
|
type="warning" |
||||
|
plain |
||||
|
icon="el-icon-download" |
||||
|
size="mini" |
||||
|
@click="handleExport" |
||||
|
v-hasPermi="['system:article:export']" |
||||
|
>导出</el-button> |
||||
|
</el-col> |
||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
||||
|
</el-row> |
||||
|
|
||||
|
<el-table v-loading="loading" :data="articleList" @selection-change="handleSelectionChange"> |
||||
|
<el-table-column type="selection" width="55" align="center" /> |
||||
|
<el-table-column label="${comment}" align="center" prop="id" /> |
||||
|
<el-table-column label="文献名称" align="center" prop="name" /> |
||||
|
<el-table-column label="本地地址" align="center" prop="openUrl" /> |
||||
|
<el-table-column label="在线地址" align="center" prop="localUrl" /> |
||||
|
<el-table-column label="来源id" align="center" prop="sourceId" /> |
||||
|
<el-table-column label="来源名称" align="center" prop="sourceName" /> |
||||
|
<el-table-column label="目标id" align="center" prop="targetId" /> |
||||
|
<el-table-column label="目标名称" align="center" prop="tagertName" /> |
||||
|
<el-table-column label="文献作者" align="center" prop="authors" /> |
||||
|
<el-table-column label="文献关键词" align="center" prop="keywords" /> |
||||
|
<el-table-column label="机构" align="center" prop="agencies" /> |
||||
|
<el-table-column label="摘要" align="center" prop="summary" /> |
||||
|
<el-table-column label="urls" align="center" prop="urls" /> |
||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
||||
|
<template slot-scope="scope"> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-edit" |
||||
|
@click="handleUpdate(scope.row)" |
||||
|
v-hasPermi="['system:article:edit']" |
||||
|
>修改</el-button> |
||||
|
<el-button |
||||
|
size="mini" |
||||
|
type="text" |
||||
|
icon="el-icon-delete" |
||||
|
@click="handleDelete(scope.row)" |
||||
|
v-hasPermi="['system:article:remove']" |
||||
|
>删除</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<pagination |
||||
|
v-show="total>0" |
||||
|
:total="total" |
||||
|
:page.sync="queryParams.pageNum" |
||||
|
:limit.sync="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
|
||||
|
<!-- 添加或修改文献管理对话框 --> |
||||
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> |
||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> |
||||
|
<el-form-item label="文献名称" prop="name"> |
||||
|
<el-input v-model="form.name" placeholder="请输入文献名称" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="本地地址" prop="openUrl"> |
||||
|
<el-input v-model="form.openUrl" placeholder="请输入本地地址" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="在线地址" prop="localUrl"> |
||||
|
<el-input v-model="form.localUrl" placeholder="请输入在线地址" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="来源id" prop="sourceId"> |
||||
|
<el-input v-model="form.sourceId" placeholder="请输入来源id" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="来源名称" prop="sourceName"> |
||||
|
<el-input v-model="form.sourceName" placeholder="请输入来源名称" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="目标id" prop="targetId"> |
||||
|
<el-input v-model="form.targetId" placeholder="请输入目标id" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="目标名称" prop="tagertName"> |
||||
|
<el-input v-model="form.tagertName" placeholder="请输入目标名称" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="文献作者" prop="authors"> |
||||
|
<el-input v-model="form.authors" placeholder="请输入文献作者" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="文献关键词" prop="keywords"> |
||||
|
<el-input v-model="form.keywords" placeholder="请输入文献关键词" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="机构" prop="agencies"> |
||||
|
<el-input v-model="form.agencies" placeholder="请输入机构" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="摘要" prop="summary"> |
||||
|
<el-input v-model="form.summary" placeholder="请输入摘要" /> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="urls" prop="urls"> |
||||
|
<el-input v-model="form.urls" placeholder="请输入urls" /> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
<div slot="footer" class="dialog-footer"> |
||||
|
<el-button type="primary" @click="submitForm">确 定</el-button> |
||||
|
<el-button @click="cancel">取 消</el-button> |
||||
|
</div> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { listArticle, getArticle, delArticle, addArticle, updateArticle } from "@/api/system/article"; |
||||
|
|
||||
|
export default { |
||||
|
name: "Article", |
||||
|
data() { |
||||
|
return { |
||||
|
// 遮罩层 |
||||
|
loading: true, |
||||
|
// 选中数组 |
||||
|
ids: [], |
||||
|
// 非单个禁用 |
||||
|
single: true, |
||||
|
// 非多个禁用 |
||||
|
multiple: true, |
||||
|
// 显示搜索条件 |
||||
|
showSearch: true, |
||||
|
// 总条数 |
||||
|
total: 0, |
||||
|
// 文献管理表格数据 |
||||
|
articleList: [], |
||||
|
// 弹出层标题 |
||||
|
title: "", |
||||
|
// 是否显示弹出层 |
||||
|
open: false, |
||||
|
// 查询参数 |
||||
|
queryParams: { |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
name: null, |
||||
|
openUrl: null, |
||||
|
localUrl: null, |
||||
|
sourceId: null, |
||||
|
sourceName: null, |
||||
|
targetId: null, |
||||
|
tagertName: null, |
||||
|
authors: null, |
||||
|
keywords: null, |
||||
|
agencies: null, |
||||
|
summary: null, |
||||
|
urls: null |
||||
|
}, |
||||
|
// 表单参数 |
||||
|
form: {}, |
||||
|
// 表单校验 |
||||
|
rules: { |
||||
|
} |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
/** 查询文献管理列表 */ |
||||
|
getList() { |
||||
|
this.loading = true; |
||||
|
listArticle(this.queryParams).then(response => { |
||||
|
this.articleList = response.rows; |
||||
|
this.total = response.total; |
||||
|
this.loading = false; |
||||
|
}); |
||||
|
}, |
||||
|
// 取消按钮 |
||||
|
cancel() { |
||||
|
this.open = false; |
||||
|
this.reset(); |
||||
|
}, |
||||
|
// 表单重置 |
||||
|
reset() { |
||||
|
this.form = { |
||||
|
id: null, |
||||
|
name: null, |
||||
|
openUrl: null, |
||||
|
localUrl: null, |
||||
|
sourceId: null, |
||||
|
sourceName: null, |
||||
|
targetId: null, |
||||
|
tagertName: null, |
||||
|
authors: null, |
||||
|
keywords: null, |
||||
|
agencies: null, |
||||
|
summary: null, |
||||
|
urls: null |
||||
|
}; |
||||
|
this.resetForm("form"); |
||||
|
}, |
||||
|
/** 搜索按钮操作 */ |
||||
|
handleQuery() { |
||||
|
this.queryParams.pageNum = 1; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
/** 重置按钮操作 */ |
||||
|
resetQuery() { |
||||
|
this.resetForm("queryForm"); |
||||
|
this.handleQuery(); |
||||
|
}, |
||||
|
// 多选框选中数据 |
||||
|
handleSelectionChange(selection) { |
||||
|
this.ids = selection.map(item => item.id) |
||||
|
this.single = selection.length!==1 |
||||
|
this.multiple = !selection.length |
||||
|
}, |
||||
|
/** 新增按钮操作 */ |
||||
|
handleAdd() { |
||||
|
this.reset(); |
||||
|
this.open = true; |
||||
|
this.title = "添加文献管理"; |
||||
|
}, |
||||
|
/** 修改按钮操作 */ |
||||
|
handleUpdate(row) { |
||||
|
this.reset(); |
||||
|
const id = row.id || this.ids |
||||
|
getArticle(id).then(response => { |
||||
|
this.form = response.data; |
||||
|
this.open = true; |
||||
|
this.title = "修改文献管理"; |
||||
|
}); |
||||
|
}, |
||||
|
/** 提交按钮 */ |
||||
|
submitForm() { |
||||
|
this.$refs["form"].validate(valid => { |
||||
|
if (valid) { |
||||
|
if (this.form.id != null) { |
||||
|
updateArticle(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("修改成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}); |
||||
|
} else { |
||||
|
addArticle(this.form).then(response => { |
||||
|
this.$modal.msgSuccess("新增成功"); |
||||
|
this.open = false; |
||||
|
this.getList(); |
||||
|
}); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
}, |
||||
|
/** 删除按钮操作 */ |
||||
|
handleDelete(row) { |
||||
|
const ids = row.id || this.ids; |
||||
|
this.$modal.confirm('是否确认删除文献管理编号为"' + ids + '"的数据项?').then(function() { |
||||
|
return delArticle(ids); |
||||
|
}).then(() => { |
||||
|
this.getList(); |
||||
|
this.$modal.msgSuccess("删除成功"); |
||||
|
}).catch(() => {}); |
||||
|
}, |
||||
|
/** 导出按钮操作 */ |
||||
|
handleExport() { |
||||
|
this.download('system/article/export', { |
||||
|
...this.queryParams |
||||
|
}, `article_${new Date().getTime()}.xlsx`) |
||||
|
} |
||||
|
} |
||||
|
}; |
||||
|
</script> |
||||
Loading…
Reference in new issue