#5 Create PDF from SQLite Database | itext pdf android | itext Android Studio tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 13

  • @Edgargu
    @Edgargu 3 ปีที่แล้ว

    Thanks ! 1,000 videos and u are the only one who solve my problem

  • @kumaraswamyb.g3498
    @kumaraswamyb.g3498 3 ปีที่แล้ว

    Nice video

    • @SarthiTechnology
      @SarthiTechnology  3 ปีที่แล้ว

      After long time you commented on my video. I was missing you.😊

  • @canacojenrykim5777
    @canacojenrykim5777 2 ปีที่แล้ว

    I'm having a problem with sqliteDatabase.rawQuery. My app keep stoping and not saving pdf file

    • @canacojenrykim5777
      @canacojenrykim5777 2 ปีที่แล้ว

      Already fixed! just changed my table name on save as pdf button

  • @utkarshpatil5397
    @utkarshpatil5397 2 ปีที่แล้ว

    Table class present in which lib.. i am not getting it

  • @haidarali1696
    @haidarali1696 3 ปีที่แล้ว

    We can make html css to pdf using itext7 android studio if yes plz make a video

  • @shuvochowdhury1115
    @shuvochowdhury1115 3 ปีที่แล้ว

    Hello! Is there any 3rd party library that can convert whole database into a single pdf file?

  • @nishmithanaik5413
    @nishmithanaik5413 2 ปีที่แล้ว

    Hello
    I am facing error in PdfWriter(file). It is showing red line under file, Can you please help ?

    • @SarthiTechnology
      @SarthiTechnology  2 ปีที่แล้ว +2

      Someone sent me solution of this problem on my email. Below I am placing his words, please try:
      .
      .
      Hello Sir,
      Your code is for only API level 23 and less change this code for new API level greater then 23 and more.this is a permission issues
      code:-ActivityCompat.requestPermissions (MainActivity.this,new String[]{Manifest.permission.READ_EXTERNAL_STORAGE,Manifest.permission.WRITE_EXTERNAL_STORAGE}, PackageManager.PERMISSION_GRANTED);
      if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.JELLY_BEAN){
      uploadimage();
      }

    • @SarthiTechnology
      @SarthiTechnology  2 ปีที่แล้ว +1

      Basically this is permission issue. Please add permission in the code and try.

    • @nishmithanaik5413
      @nishmithanaik5413 2 ปีที่แล้ว

      @@SarthiTechnology Ok Thank You