質問編集履歴
1
貼り付けるコードを間違えた
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,8 +3,151 @@
|
|
3
3
|
|
4
4
|
### 発生している問題・分からないこと
|
5
5
|
androidstudioのjavaでSQliteに接続しようとしてるのですが、データベースがcloseのままでデータを入れることができません。keep database connections openというところ押したら接続できてデータが入ってることは確認できたのですが調べたところこれは根本解決になってないとのことだったので、誰がこの現象がわかる人教えてくれるとありがたいです。エラーは何も出でおらず接続時にエラー文を出すようにしてるのですが何も出ずエラーが一個もないことで困っています。
|
6
|
+
|
6
|
-
```java
|
7
|
+
```これが全体コードです(main)java
|
8
|
+
package com.example.attendance_management;
|
9
|
+
|
10
|
+
import android.content.Intent;
|
11
|
+
import android.database.sqlite.SQLiteDatabase;
|
12
|
+
import android.database.sqlite.SQLiteStatement;
|
13
|
+
import android.os.Bundle;
|
14
|
+
import android.os.Handler;
|
15
|
+
import android.util.Log;
|
16
|
+
import android.view.View;
|
17
|
+
import android.widget.Button;
|
18
|
+
import android.widget.TextView;
|
19
|
+
|
20
|
+
import androidx.appcompat.app.AppCompatActivity;
|
21
|
+
|
22
|
+
import java.text.SimpleDateFormat;
|
23
|
+
import java.util.Date;
|
24
|
+
import java.util.Locale;
|
25
|
+
|
26
|
+
public class MainActivity extends AppCompatActivity {
|
27
|
+
|
28
|
+
private com.example.attendance_management.DatabaseHelper databaseHelper; // データベースヘルパーのインスタンス
|
29
|
+
private TextView timeLabel;
|
30
|
+
private Handler handler = new Handler();
|
31
|
+
private SimpleDateFormat displayFormat; // 表示用フォーマット
|
32
|
+
|
33
|
+
private com.example.attendance_management.DatabaseHelper _helper; // DatabaseHelperインスタンス
|
34
|
+
|
35
|
+
@Override
|
36
|
+
protected void onCreate(Bundle savedInstanceState) {
|
37
|
+
super.onCreate(savedInstanceState);
|
38
|
+
setContentView(R.layout.activity_main);
|
39
|
+
_helper = new DatabaseHelper(MainActivity.this);
|
40
|
+
|
41
|
+
|
42
|
+
// DatabaseHelper インスタンスを初期化
|
43
|
+
databaseHelper = new com.example.attendance_management.DatabaseHelper(this);
|
44
|
+
|
45
|
+
// TextViewのIDを取得
|
46
|
+
timeLabel = findViewById(R.id.timelabel);
|
47
|
+
|
48
|
+
// フォーマットの設定
|
49
|
+
displayFormat = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
|
50
|
+
|
51
|
+
// menu1ボタンのIDを取得
|
52
|
+
Button menucalendar = findViewById(R.id.menu1);
|
53
|
+
Button menutotalsalary = findViewById(R.id.menu2);
|
54
|
+
Button menubasicin = findViewById(R.id.menu3);
|
55
|
+
Button checkinbutton = findViewById(R.id.checkin);
|
56
|
+
Button checkoutbutton = findViewById(R.id.checkout);
|
57
|
+
|
58
|
+
// ボタンが押されたときの処理
|
59
|
+
checkinbutton.setOnClickListener(new View.OnClickListener() {
|
60
|
+
@Override
|
61
|
+
public void onClick(View v) {
|
62
|
+
// 現在時刻を取得
|
63
|
+
Date now = new Date();
|
64
|
+
|
65
|
+
// 日付の部分を取得 (yyyy-MM-dd)
|
66
|
+
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault());
|
67
|
+
String checkinDate_data = dateFormat.format(now);
|
68
|
+
|
69
|
+
// 時刻の部分を取得 (HH:mm:ss)
|
70
|
+
SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
|
71
|
+
String checkinTime_data = timeFormat.format(now);
|
72
|
+
|
73
|
+
// データベースに保存
|
74
|
+
saveCheckTime(checkinDate_data, checkinTime_data, "", "");
|
75
|
+
}
|
76
|
+
});
|
77
|
+
|
78
|
+
// ボタンが押されたときの処理
|
79
|
+
checkoutbutton.setOnClickListener(new View.OnClickListener() {
|
80
|
+
@Override
|
81
|
+
public void onClick(View v) {
|
82
|
+
// 現在時刻を取得
|
83
|
+
Date now = new Date();
|
84
|
+
|
85
|
+
// 日付の部分を取得 (yyyy-MM-dd)
|
86
|
+
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd", Locale.getDefault());
|
87
|
+
String checkoutDate_data = dateFormat.format(now);
|
88
|
+
|
89
|
+
// 時刻の部分を取得 (HH:mm:ss)
|
90
|
+
SimpleDateFormat timeFormat = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
|
91
|
+
String checkoutTime_data = timeFormat.format(now);
|
92
|
+
|
93
|
+
// データベースに保存
|
94
|
+
saveCheckTime("", "", checkoutDate_data, checkoutTime_data);
|
95
|
+
}
|
96
|
+
});
|
97
|
+
|
98
|
+
|
99
|
+
// menu1ボタンにクリックリスナーを設定
|
100
|
+
menucalendar.setOnClickListener(new View.OnClickListener() {
|
101
|
+
@Override
|
102
|
+
public void onClick(View view) {
|
103
|
+
Intent intent = new Intent(MainActivity.this, calendar.class);
|
104
|
+
startActivity(intent);
|
105
|
+
}
|
106
|
+
});
|
107
|
+
|
108
|
+
menutotalsalary.setOnClickListener(new View.OnClickListener() {
|
109
|
+
@Override
|
110
|
+
public void onClick(View view) {
|
111
|
+
Intent intent = new Intent(MainActivity.this, totalsalary.class);
|
112
|
+
startActivity(intent);
|
113
|
+
}
|
114
|
+
});
|
115
|
+
|
116
|
+
menubasicin.setOnClickListener(new View.OnClickListener() {
|
117
|
+
@Override
|
118
|
+
public void onClick(View view) {
|
119
|
+
Intent intent = new Intent(MainActivity.this, basic_information.class);
|
120
|
+
startActivity(intent);
|
121
|
+
}
|
122
|
+
});
|
123
|
+
|
124
|
+
// Runnableを使って1秒ごとに時刻を更新
|
125
|
+
handler.post(updateTimeTask);
|
126
|
+
}
|
127
|
+
|
128
|
+
|
129
|
+
private Runnable updateTimeTask = new Runnable() {
|
130
|
+
@Override
|
131
|
+
public void run() {
|
132
|
+
// 現在の日時を取得
|
133
|
+
Date now = new Date();
|
134
|
+
|
135
|
+
// 表示用の時刻をフォーマット
|
136
|
+
String currentTime = displayFormat.format(now);
|
137
|
+
timeLabel.setText(currentTime);
|
138
|
+
|
139
|
+
// 1秒後に再実行
|
140
|
+
handler.postDelayed(this, 1000);
|
141
|
+
}
|
142
|
+
};
|
143
|
+
|
144
|
+
@Override
|
145
|
+
protected void onDestroy() {
|
146
|
+
_helper.close();
|
147
|
+
super.onDestroy();
|
148
|
+
}
|
149
|
+
|
7
|
-
private void saveCheckTime(String checkinDate_data, String checkinTime_data, String checkoutDate_data, String checkoutTime_data) {
|
150
|
+
private void saveCheckTime(String checkinDate_data, String checkinTime_data, String checkoutDate_data, String checkoutTime_data) {
|
8
151
|
SQLiteDatabase db = null; // db を try の外で宣言
|
9
152
|
SQLiteStatement stmtInsert = null; // stmtInsert を try の外で宣言
|
10
153
|
|
@@ -47,170 +190,9 @@
|
|
47
190
|
}
|
48
191
|
}
|
49
192
|
}
|
50
|
-
|
193
|
+
|
51
|
-
```これが全体コードです(main)
|
52
|
-
package com.example.myapplication;
|
53
|
-
|
54
|
-
import android.database.Cursor;
|
55
|
-
import android.database.sqlite.SQLiteDatabase;
|
56
|
-
import android.database.sqlite.SQLiteStatement;
|
57
|
-
import android.os.Bundle;
|
58
|
-
import android.util.Log;
|
59
|
-
import android.view.View;
|
60
|
-
import android.widget.AdapterView;
|
61
|
-
import android.widget.Button;
|
62
|
-
import android.widget.EditText;
|
63
|
-
import android.widget.ListView;
|
64
|
-
import android.widget.TextView;
|
65
|
-
import android.widget.Toast;
|
66
|
-
|
67
|
-
import androidx.appcompat.app.AppCompatActivity;
|
68
|
-
|
69
|
-
import org.apache.poi.ss.usermodel.Row;
|
70
|
-
import org.apache.poi.ss.usermodel.Sheet;
|
71
|
-
import org.apache.poi.ss.usermodel.Workbook;
|
72
|
-
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
73
|
-
|
74
|
-
import java.io.File;
|
75
|
-
import java.io.FileOutputStream;
|
76
|
-
import java.io.IOException;
|
77
|
-
|
78
|
-
public class MainActivity extends AppCompatActivity {
|
79
|
-
|
80
|
-
private int _cocktailId = -1;
|
81
|
-
private String _cocktailName = "";
|
82
|
-
|
83
|
-
private DatabaseHelper _helper;
|
84
|
-
|
85
|
-
@Override
|
86
|
-
protected void onCreate(Bundle savedInstanceState) {
|
87
|
-
super.onCreate(savedInstanceState);
|
88
|
-
setContentView(R.layout.activity_main);
|
89
|
-
|
90
|
-
ListView lvCocktail = findViewById(R.id.lvCocktail);
|
91
|
-
|
92
|
-
lvCocktail.setOnItemClickListener(new ListItemClickListener());
|
93
|
-
|
94
|
-
_helper = new DatabaseHelper(MainActivity.this);
|
95
|
-
}
|
96
|
-
|
97
|
-
|
98
|
-
@Override
|
99
|
-
protected void onDestroy(){
|
100
|
-
_helper.close();
|
101
|
-
super.onDestroy();
|
102
|
-
|
103
|
-
}
|
104
|
-
|
105
|
-
public void onSaveButtonClick(View view) {
|
106
|
-
EditText etNote = findViewById(R.id.etNote);
|
107
|
-
String note = etNote.getText().toString();
|
108
|
-
|
109
|
-
|
110
|
-
SQLiteDatabase db = _helper.getWritableDatabase();
|
111
|
-
|
112
|
-
String sqlDelete = "DELETE FROM cocktailmemos WHERE _id = ?";
|
113
|
-
|
114
|
-
SQLiteStatement stmt = db.compileStatement(sqlDelete);
|
115
|
-
|
116
|
-
stmt.bindLong(1, _cocktailId);
|
117
|
-
|
118
|
-
stmt.executeUpdateDelete();
|
119
|
-
|
120
|
-
String sqlInsert ="INSERT INTO cocktailmemos (_id, name, note) VALUES (?, ?, ?)";
|
121
|
-
|
122
|
-
stmt = db.compileStatement(sqlInsert);
|
123
|
-
|
124
|
-
stmt.bindLong(1, _cocktailId);
|
125
|
-
stmt.bindString(2, _cocktailName);
|
126
|
-
stmt.bindString(3, note);
|
127
|
-
stmt.executeInsert();
|
128
|
-
|
129
|
-
etNote.setText("");
|
130
|
-
|
131
|
-
|
132
|
-
TextView tvCocktailName = findViewById(R.id.tvCocktailName);
|
133
|
-
tvCocktailName.setText(getString(R.string.tv_name));
|
134
|
-
|
135
|
-
Button btnSave = findViewById(R.id.btnSave);
|
136
|
-
btnSave.setEnabled(false);
|
137
|
-
}
|
138
|
-
|
139
|
-
private class ListItemClickListener implements AdapterView.OnItemClickListener {
|
140
|
-
@Override
|
141
|
-
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
142
|
-
_cocktailId = position;
|
143
|
-
_cocktailName = (String) parent.getItemAtPosition(position);
|
144
|
-
|
145
|
-
TextView tvCocktailName = findViewById(R.id.tvCocktailName);
|
146
|
-
tvCocktailName.setText(_cocktailName);
|
147
|
-
|
148
|
-
Button btnSave = findViewById(R.id.btnSave);
|
149
|
-
btnSave.setEnabled(true);
|
150
|
-
|
151
|
-
SQLiteDatabase db = _helper.getWritableDatabase();
|
152
|
-
|
153
|
-
String sql = "SELECT * FROM cocktailmemos WHERE _id = " + _cocktailId;
|
154
|
-
|
155
|
-
Cursor cursor = db.rawQuery(sql, null);
|
156
|
-
|
157
|
-
String note = "";
|
158
|
-
|
159
|
-
while(cursor.moveToNext()){
|
160
|
-
int idxNote = cursor.getColumnIndex("note");
|
161
|
-
|
162
|
-
note = cursor.getString(idxNote);
|
163
|
-
}
|
164
|
-
|
165
|
-
EditText etNote = findViewById(R.id.etNote);
|
166
|
-
etNote.setText(note);
|
167
|
-
}
|
168
|
-
}
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
public void exportDatabaseToExcel() {
|
173
|
-
SQLiteDatabase db = _helper.getReadableDatabase();
|
174
|
-
String sql = "SELECT * FROM cocktailmemos";
|
175
|
-
Cursor cursor = db.rawQuery(sql, null);
|
176
|
-
|
177
|
-
// Excelファイル作成
|
178
|
-
Workbook workbook = new XSSFWorkbook();
|
179
|
-
Sheet sheet = workbook.createSheet("Cocktail Memos");
|
180
|
-
|
181
|
-
// ヘッダー行を作成
|
182
|
-
Row headerRow = sheet.createRow(0);
|
183
|
-
headerRow.createCell(0).setCellValue("_id");
|
184
|
-
headerRow.createCell(1).setCellValue("Name");
|
185
|
-
headerRow.createCell(2).setCellValue("Note");
|
186
|
-
|
187
|
-
// データ行を作成
|
188
|
-
int rowIndex = 1;
|
189
|
-
while (cursor.moveToNext()) {
|
190
|
-
Row row = sheet.createRow(rowIndex++);
|
191
|
-
|
192
|
-
row.createCell(0).setCellValue(cursor.getInt(cursor.getColumnIndex("_id")));
|
193
|
-
row.createCell(1).setCellValue(cursor.getString(cursor.getColumnIndex("name")));
|
194
|
-
row.createCell(2).setCellValue(cursor.getString(cursor.getColumnIndex("note")));
|
195
|
-
}
|
196
|
-
cursor.close();
|
197
|
-
|
198
|
-
// ファイル保存パスを指定
|
199
|
-
File file = new File(getExternalFilesDir(null), "CocktailMemos.xlsx");
|
200
|
-
try (FileOutputStream fos = new FileOutputStream(file)) {
|
201
|
-
workbook.write(fos);
|
202
|
-
workbook.close();
|
203
|
-
} catch (IOException e) {
|
204
|
-
e.printStackTrace();
|
205
|
-
}
|
206
|
-
Log.d("FilePath", "Excel file saved to: " + file.getAbsolutePath());
|
207
|
-
|
208
|
-
// ファイル保存後の通知
|
209
|
-
Toast.makeText(this, "Excel file exported: " + file.getAbsolutePath(), Toast.LENGTH_LONG).show();
|
210
|
-
}
|
211
194
|
|
212
195
|
}
|
213
|
-
|
214
196
|
```
|
215
197
|
```(DatabaseHelper)
|
216
198
|
package com.example.attendance_management;
|
@@ -272,7 +254,7 @@
|
|
272
254
|
```
|
273
255
|
private static final int DATABASE_VERSION = 2;
|
274
256
|
```
|
275
|
-
|
257
|
+
2にすることでカラムのエラーが治った
|
276
258
|
|
277
259
|
### 補足
|
278
260
|
特になし
|