前言 我总是在git提交的时候,遇到一些奇奇怪怪的问题。有时候居然还会碰上第二次。 记住这些“绊脚石”,下回不摔跤。 目录 git index损坏 一、git index损坏 报错信息:D:\Fanniegirl>git status error: bad signature 0x00000000 ...
分类:
其他好文 时间:
2021-06-21 20:37:13
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #define OK 1 #define Error 0 typedef int Status; //栈 typedef struct StackNode { int data; struct StackNode *next; ...
分类:
其他好文 时间:
2021-06-21 20:35:07
阅读次数:
0
1.android的HttpURLConnection发送POST请求 核心代码: PostUtils.java public class PostUtils { public static String LOGIN_URL = "http://172.16.2.54:8080/HttpTest/S ...
分类:
其他好文 时间:
2021-06-21 20:31:45
阅读次数:
0
从零开始的体温app开发(db) package db;import android.content.Context;import android.database.sqlite.SQLiteOpenHelper;import android.database.sqlite.SQLiteDataba ...
分类:
编程语言 时间:
2021-06-21 20:15:58
阅读次数:
0
从零开始的体温app开发(db2) package db;import android.content.Context;import android.database.sqlite.SQLiteOpenHelper;import android.database.sqlite.SQLiteDatab ...
分类:
编程语言 时间:
2021-06-21 20:15:41
阅读次数:
0
实现效果图: 代码实现: Step 1:编写矩形边框的Drawable: <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <!-- 设 ...
分类:
移动开发 时间:
2021-06-21 20:14:59
阅读次数:
0
从零开始的体温app开发(layout1) <?xml version="1.0" encoding="utf-8"?><ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://s ...
分类:
编程语言 时间:
2021-06-21 20:12:57
阅读次数:
0
读到:1.3 IntentFilter的匹配规则 3.data的匹配规则 资料 网址 豆瓣网址 https://book.douban.com/subject/26599538/ ...
分类:
移动开发 时间:
2021-06-21 20:02:11
阅读次数:
0
1 新增 user = User(mobile='15612345678', name='itcast') db.session.add(user) db.session.commit() profile = Profile(id=user.id) db.session.add(profile) d ...
分类:
数据库 时间:
2021-06-20 18:48:46
阅读次数:
0
今天完成内容: 学习sqlite数据库 完成安装及建表 学习增删改查 遇到问题: 无 明日目标: 学习Android studio的开发 ...
分类:
其他好文 时间:
2021-06-20 17:58:35
阅读次数:
0